PHP - Basics and Execution Model
Which of the following is a correct way to write a single-line comment in PHP?
// and #.// correctly. is HTML comment syntax, not PHP. /* This is a single-line comment */ is multi-line comment syntax. # This is a single-line comment is also valid in PHP, so # This is not a comment is correct as well.15+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions