我们如何在 include_once 函数中使用查询字符串
像这样:
include_once 'model/edit.php?id=$inf';
你不能。参数保留给 URL。但是您可以模拟向 URL 添加参数的效果:
$_GET["id"] = $inf;
include_once 'model/edit.php';
If you use include_once 'model/edit.php' then after this code you can use variables that are available in your script
edit.php
<?php echo $x; ?>
main.php
<?php $x = "it works"; include_once 'edit.php'; ?>
check this code and you will understand. This code prints "it works".
$inf = '1';
include_once '模型/edit.php;
在 include_once 函数中添加查询字符串没有意义。如果你在函数之前声明变量,那么你仍然可以直接访问包含文件中的 $inf。