PHP -- add comments

WBOY
Release: 2016-08-08 09:23:24
Original
1203 people have browsed it

PHP supports 3 styles of comments

1. C++ style (//) comments

This kind of comment cannot appear in the ?> tag. If the short_open and asp_tag settings are turned on, > and %> cannot appear in the comments either. Medium

<?<span>php
    </span><span>echo</span> 'Hello,PHP!';     <span>//</span><span>我是注释,不被执行    </span>?>
Copy after login

2.C language style, nested comments are not allowed

<?<span>php
    </span><span>/*</span><span>    *我是注释,不被执行
    </span><span>*/</span><span>echo</span> &lsquo;Hello,PHP!<span>&rsquo;;
</span>?>
Copy after login

3.Shell style, the same ban as C++

<?<span>php
    </span><span>echo</span> 'Hello,PHP!';   <span>#</span><span>我是注释,不被执行</span>?>
Copy after login

The above introduces PHP - adding comments, including aspects of content. I hope it will be helpful to friends who are interested in PHP tutorials.

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!