PHP魔术常量不起作用

时间:2013-11-20 01:25:04

标签: php magic-constants

当我输入这个PHP代码时,魔术常量_LINE_只是按字面输出。

<!DOCTYPE html>
<html>
<body>

<?php

echo "This is line"._LINE_."blah";

?>
</body>
</html>

输出:

 This is line_LINE_

我做错了什么?

1 个答案:

答案 0 :(得分:5)

之前和之后的两个下划线:

__LINE__