Answers for "how to create comments in php"

PHP
10

php comment

// 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
*/
Posted by: Guest on March-03-2021
1

how to create comments in php

Answer: Use the Syntax "// text" (single line) and "/* text */"
(multi-line)
Posted by: Guest on January-03-2020
1

how to make a comment in php

// single line comment
/* multi line comment
hello
*/
Posted by: Guest on October-01-2020

Code answers related to "how to create comments in php"

Browse Popular Code Answers by Language