php学习笔记-添加注释

<?php

echo '<title>this is my first php program!</title>';

//this is a single comment!

/*

this is a multi-lines comment!

*/

echo '<h1>hi php!</h1>';

?>

和c语言里面的注释方法完全相同。

原文地址:https://www.cnblogs.com/yfish/p/8451352.html