Quantcast
Channel: 9zap.com » PHP
Viewing all articles
Browse latest Browse all 15

Comments in PHP

$
0
0

php
PHP supports both single-line comment and multi-line comment blocks. For a single line comment use // or # and all text to the right of this symbol will be ignored by PHP interpreter.

Single line comment in PHP

<?php
// This is a single line comment
# This is another way for single line comment
?>

Multi-line comments in PHP

<?php
/* and this is a
multi-line
comment */
?>

Viewing all articles
Browse latest Browse all 15

Trending Articles