PHP 版本更新后,使用常用方法向包含的 PHP 文件传递变量会出现问题。该变量,特别是 $_SERVER['PHP_SELF'],需要在调用文件中设置并由包含的文件访问。
尽管普遍认为需要特定的概念将变量传递给包含文件的措施,PHP 的固有行为允许在包含语句之前声明的变量在包含文件中可用。
但是,将变量传递给内部使用 include 语句的函数需要一种称为 extract() 的技术。
考虑以下代码片段:
<code class="php">function includeWithVariables($filePath, $variables = array(), $print = true) { // Extract the variables to a local namespace extract($variables); // Start output buffering ob_start(); // Include the template file include $filePath; // End buffering and return its contents $output = ob_get_clean(); if (!$print) { return $output; } echo $output; }</code>
此函数采用包含文件路径、可选变量数组和打印标志。
index.php:
以上是版本更新后如何将变量传递给包含的 PHP 文件?的详细内容。更多信息请关注PHP中文网其他相关文章!