一下注释是否正确,为什么?
1.
echo "test"; // This is a /*test*/
2
/* test // test */
echo "string";
3
/* my */ test */
echo "string";
4
/* my test ?> */
echo "string";
5
// my test ?>
echo "string";
答案
- 正确, //为单行注释
- 正确,/**/为多行注释,中间可以出现单行注释
- 错误 , 中间的/为结束,所有后面的/会导致报错
- 正确,多行注释中可以出现php结束符
- 错误,单行注释不能出现 ?>
php在线面试题集:http://cainiaophp.com/
php面试讨论群:536633782
网友评论