PHP:将变量传递给您要包含的文件?

发布于 2024-08-04 03:22:14 字数 160 浏览 7 评论 0原文

我想知道是否有一种方法可以将变量传递到您通过 include() 包含的文件?

我尝试了这个,但收到错误:

include("header_alt.php?img=hey");

有办法做到这一点吗?

谢谢!

I am wondering if there is a way to pass a variable to a file you are including via include()?

I tried this but got an error:

include("header_alt.php?img=hey");

Is there a way to do that?

Thanks!

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

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

发布评论

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

评论(2

夏夜暖风 2024-08-11 03:22:15

只需在第一个文件中定义变量即可;例如,在 temp.php 中:

<?php
$my_var = 10;

include 'temp-2.php';

die;
?>

并在第二个文件中使用它; temp-2.php

<?php

var_dump($my_var);

?>

它应该可以工作:我从 temp-2.php 得到这个输出:

int 10

当您从远程服务器请求某些数据时(例如当您使用浏览器在网站上冲浪时),会使用查询字符串语法,使用诸如 ?img=hey 之类的内容,当包含同一服务器上的文件时则不然。

Just define your variable in the first file ; for instance, in temp.php :

<?php
$my_var = 10;

include 'temp-2.php';

die;
?>

And use it in the second file ; temp-2.php :

<?php

var_dump($my_var);

?>

And it should work : I'm getting this output, from temp-2.php :

int 10

The query-string syntax, using stuff like ?img=hey is used when you are requesting some data from a distant server (like when you are using your browser to surf on websites), not when including a file that is on the same server.

无人问我粥可暖 2024-08-11 03:22:15

Smarty 为此类事情提供了一个非常好的机制。另外,使用 Smarty 只会打造更好的 php 应用程序。

http://www.smarty.net/manual/en/language。函数.include.php

变量可以传递到包含的
模板作为属性。任何变量
显式传递给包含的
模板仅在以下范围内可用
包含文件的范围。属性
变量覆盖当前模板
变量,在它们是的情况下
命名相同。

所有分配的变量值都是
范围后恢复
剩下包含的模板。这意味着
您可以使用中的所有变量
包括包含在内的模板
模板。但变量的变化
包含的模板里面没有
在包含模板内可见
在 {include} 语句之后。

Smarty provides a really good mechanism for this sort of thing. Plus, using Smarty just makes for better php applications.

http://www.smarty.net/manual/en/language.function.include.php

Variables can be passed to included
templates as attributes. Any variables
explicitly passed to an included
template are only available within the
scope of the included file. Attribute
variables override current template
variables, in the case when they are
named the same.

All assigned variable values are
restored after the scope of the
included template is left. This means
you can use all variables from the
including template inside the included
template. But changes to variables
inside the included template are not
visible inside the including template
after the {include} statement.

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