PHP 包含回显 '1'
<?=include("inc/c.php")?>
尽管充满了字符串并且没有回声,但仍吐出 1。
<?=include("inc/c.php")?>
Spits out 1 despite it being full of strings and no echo.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
删除
=
符号。它使 PHP 回显include()
返回的任何内容。Remove the
=
sign. It makes PHP echo whateverinclude()
returns.您将看到
include()
函数的结果。它返回true
因为它成功了,并且您看到1
,因为这是true
的字符串表示形式。如果您想要该文档的文本,可以使用
file_get_contents( )
或类似的。You're seeing the result of the
include()
function. It returnstrue
because it succeeded, and you see1
, as that is the string representation oftrue
.If you want the text of that document, you can use
file_get_contents()
or similar.