-11

私はこのコードを持っています:

<?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>

それをどのようにコメントすればよいですか?

4

5 に答える 5

4
<?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
?>
于 2013-04-01T20:31:56.357 に答える
1

コメントをブラウザに反映するかどうかに応じて、次のようになります。

<?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>
于 2013-04-01T20:33:01.150 に答える
0

このような:

<?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>
*/ ?>

しかし、私は通常、そのブロック全体を削除または置換します。

于 2013-04-01T20:30:31.687 に答える
0
/* multi-line quote */

一行引用符の場合は、その前にハッシュ ( #) または二重スラッシュ ( //) を入力します。

于 2013-04-01T20:31:24.390 に答える
0

PHP でコメントするには複数の方法があります。

/* INFO */ for multiline comments
# INFO  for single-line comments
// INFO for single-line comments
于 2013-04-01T20:33:03.237 に答える