ע��

PHP ֧�� C��C++ �� Unix Shell ���Perl ��񣩵�ע�͡�����:

<?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 ����飬�Ӻ��ĸ����ȳ��֡�����ζ���� // ... ?> ���� # ... ?> ֮��� HTML ���뽫����ʾ������?> ������ PHP ģʽ�������� HTML ģʽ��// �� # ������Ӱ�쵽��һ�㡣��������� asp_tags ����ѡ�����Ϊ�� // %> �� # %> ��ͬ��������</script> ����ڵ���ע���в������� PHP ģʽ��

<h1>This is an <?php # echo 'simple';?> example</h1>
<p>The header above will say 'This is an  example'.</p>

C ����ע����������һ�� */ ʱ������Ҫȷ����ҪǶ�� C ����ע�͡���ͼע�͵�һ������ʱ�����׳��ָô���

<?php
 
/*
    echo "This is a test"; /* This comment will cause a problem */
 
*/
?>