how to make a comment in php code example

Example 1: how to make a comment in php

// single line comment
/* multi line comment
hello
*/

Example 2: comment php

// This is a single-line comment
# This is also a single-line comment
/*
This is a multiple-lines comment block
that spans over multiple
lines
*/

Example 3: comments in php

//For a single line comment use //:
//this is a comment too
//for multi-line comments use /* and */:
/* <--start of multi-line comment
this is a comment

this is a comment too (end of multi-line comment)-->*/

Tags:

Php Example