主页
PHP
PHP 多行注释
tryphp_comments_inline
运行 ❯
×
更改方向
保存代码
更改主题
Using comments to ignore parts of a code line:
<?php $x = 5 /* + 15 */ + 5; echo $x; ?>
使用注释来忽略代码行的一部分
10