gpt4 book ai didi

php - 包含带有变量的 php 页面

转载 作者:可可西里 更新时间:2023-11-01 00:10:51 26 4
gpt4 key购买 nike

我知道可以包含带有变量的 php 文件。看起来像这个样本。

include 'http://www.example.com/file.php?foo=1&bar=2';

如何使用变量在本地文件系统(而不是 url)中包含 php 文件?诸如此类。

include 'file.php?foo=1&bar=2';

这可能吗?

更新我想从索引页面获取变量,并将具有确切变量的文件从本地系统包含到内容 div。就这样

<?php
$foo=$_GET['foo'];
$bar=$_GET['bar'];

?>
<body>
<div id="main">
<div id="content">
<?php
include 'file.php?foo='.$foo.'&bar='.$bar;
?>
</div>
</div>
</body>

最佳答案

变量仅在要包含的文件中可用。变量没有文件作用域。

所以如果你这样做

$foo=1; $bar=2;
include 'file.php';

$foo$bar 将在 file.php 中可用。

在此包含语句之上声明的变量将在 file.php 文件中可用。

关于php - 包含带有变量的 php 页面,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6811943/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com