在PHP 中將變數傳遞給包含檔案
PHP 提供了一個使用include 語句將外部檔案包含到腳本中的便捷方法。然而,當嘗試將變數傳遞給包含文件時,一些用戶面臨挑戰。
在舊版的 PHP 中,有必要使用全域變數或輔助方法等方法明確傳遞變數。然而,在現代版本的 PHP 中,這不再是必要的。
在呼叫 include 之前定義的任何 PHP 變數都會在包含的檔案中自動可用。為了說明這一點,請考慮以下範例:
// In the main file:
$variable = "apple";
include('second.php');
// In second.php:
echo $variable; // Output: "apple"
這個簡單的方法允許您在主檔案和包含檔案之間無縫共享變數。
需要注意的是,如果變數是在包含文件中定義的,它僅在該文件中可用。若要將變數傳遞到內部呼叫 include 的函數中,可以使用 extract() 函數。
function includeWithVariables($filePath, $variables = [], $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;
}
這允許您將變數傳遞到包含的文件,同時保持使用函數的靈活性。
免責聲明: 提供的所有資源部分來自互聯網,如果有侵犯您的版權或其他權益,請說明詳細緣由並提供版權或權益證明然後發到郵箱:[email protected] 我們會在第一時間內為您處理。
Copyright© 2022 湘ICP备2022001581号-3