Intereting Posts

Как прокомментировать php-код

У меня есть этот код

<?php do_action( 'twentytwelve_credits' ); ?> <a href="<?php echo esc_url( __( 'http://wordpress.org/', 'twentytwelve' ) ); ?>" title="<?php esc_attr_e( 'Semantic Personal Publishing Platform', 'twentytwelve' ); ?>"><?php printf( __( 'Proudly powered by %s', 'twentytwelve' ), 'WordPress' ); ?></a> 

Как мне это прокомментировать?

Related of "Как прокомментировать php-код"

 <?php echo 'This is a test'; // This is a one-line c++ style comment /* This is a multi line comment yet another line of comment */ echo 'This is yet another test'; echo 'One Final Test'; # This is a one-line shell-style comment ?> 

как это:

 <?php /*do_action( 'twentytwelve_credits' ); ?> <a href="<?php echo esc_url( __( 'http://wordpress.org/', 'twentytwelve' ) ); ?>" title="<?php esc_attr_e( 'Semantic Personal Publishing Platform', 'twentytwelve' ); ?>"><?php printf( __( 'Proudly powered by %s', 'twentytwelve' ), 'WordPress' ); ?></a> */ ?> 

но я вообще удаляю или заменяю весь этот блок.

/ * многострочная цитата * /

Для одной строки цитата просто введите хэш перед ней

В зависимости от того, хотите ли вы распространять комментарии в браузере или нет:

 <?php /* This very interesting comment won't show in the content sent to the browser */ do_action( 'twentytwelve_credits' ); // or some end of line comment, not forwarded to the browser either ?> <!-- But this one will --> <a href="<?php echo esc_url( __( 'http://wordpress.org/', 'twentytwelve' ) ); ?>" title="<?php esc_attr_e( 'Semantic Personal Publishing Platform', 'twentytwelve' ); ?>"><?php printf( __( 'Proudly powered by %s', 'twentytwelve' ), 'WordPress' ); ?></a> 

У вас может быть несколько способов комментариев в PHP:

 /* INFO */ (multiline comment) # INFO (single line comment) // INFO (single line comment) 

Надеюсь, поможет. Счастливое кодирование …