PHP supports C, C++ and Unix shell-style comments : Comments « Language Basics « PHP
- PHP
- Language Basics
- Comments
PHP supports C, C++ and Unix shell-style comments
<?php
echo "This is a test"; // This is a one-line c++ style comment
/* This is a multi line comment
yet another line of comment */
echo "This is yet another test";
echo "One Final Test"; # This is shell-style style comment
?>
Related examples in the same category