Programming Code Center(PCC)
[PHP]

(PCC)::[how-to-use-multi-line-comment-in-php-language]::[php]

File Name : index.php

<!DOCTYPE html>
<html>
<body>
 
<?php
/*
This is a multiple-lines comment block
that spans over multiple
lines
*/
?>
 
</body>
</html>

Output :