PHP 包含回显 '1'

发布于 2025-01-04 07:54:25 字数 87 浏览 2 评论 0原文

<?=include("inc/c.php")?>

尽管充满了字符串并且没有回声,但仍吐出 1。

<?=include("inc/c.php")?>

Spits out 1 despite it being full of strings and no echo.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

蓝梦月影 2025-01-11 07:54:25

删除 = 符号。它使 PHP 回显 include() 返回的任何内容。

<?php
include("inc/c.php");
?>

Remove the = sign. It makes PHP echo whatever include() returns.

<?php
include("inc/c.php");
?>
风吹雨成花 2025-01-11 07:54:25

您将看到 include() 函数的结果。它返回 true 因为它成功了,并且您看到 1,因为这是 true 的字符串表示形式。

如果您想要该文档的文本,可以使用 file_get_contents( ) 或类似的。

You're seeing the result of the include() function. It returns true because it succeeded, and you see 1, as that is the string representation of true.

If you want the text of that document, you can use file_get_contents() or similar.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文