How to comment multiple lines in PHP?
In PHP, you can use /* */ to comment out multiple lines of content. Here is an example:
/*
这是一个多行注释的示例
注释的内容可以有多行
可以用来对代码进行解释或者暂时禁用某些代码
*/
Furthermore, if you only want to comment one line of code, you can use // or #. For example:
// 这是一个单行注释的示例
# 这也是一个单行注释的示例