コメントの書き方は3つ

test1
test2
test3

source

<?php
echo "test1<br>";	//コメント1
/*
複数行のコメント
テストです。
*/
echo "test2<br>";	#シェル型コメント
echo "test3<br>";
?>