PHP में comments programmer को code समझने के लिए दिया जाता है | ये Comment lines server द्वारा read नहीं की जाती |
PHP में दो प्रकार से comments को इस्तेमाल किया जाता है |
- Single Line Comment
- Multiple Line Comments
1. Single Line Comment
Single line Comment दो प्रकार से की जाती है |
शुरुआत पर #(hash) या //(backslashes) का इस्तेमाल करके Single comment दी जाती है | यहाँ पर किसी php code को भी comment बनाया जाता है |
Source Code :Output :12345<?php
# This is a single line comment.
//$a = 20;
// This is also a single line comment.
?>
2. Multiple Line Comments
Multiple Line Comments के लिए /*(backslash asterisk) और */(asterisk backslash) के बीच में multiple line comments दी जाती है |
Source Code :Output :123456<?php
/* This is a multiple line comment.
$a = 20;
This is a part of multiple line comment.
*/
?>