How can I properly outcomment this PHP code? [closed]
I have this code: <?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> How should I outcomment that? <?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 ?> Depending on whether you want