可能重複:
PHP - include a php file and also send query parameters有沒有一種方法可以在PHP包含路徑中使用參數?
因爲這並沒有爲我工作:
<?php include ('list-options.php?format=list'); ?>
可能重複:
PHP - include a php file and also send query parameters有沒有一種方法可以在PHP包含路徑中使用參數?
因爲這並沒有爲我工作:
<?php include ('list-options.php?format=list'); ?>
號你可以設置一個變量,並就像使用它雖然在文件中聲明。閱讀在這裏:http://www.php.net/manual/en/function.include.php
<?php
$format = "list";
include("list-options.php");
?>
他們不直接支持,但你可以通過效仿:
$_GET['format'] = 'list';
include("list-options.php");
腳本會認爲這是所謂與list-options.php?format=list
。
雖然您不能將參數添加到本地服務器中包含的文件,但如果您的文件包含遠程文件,則可以。如果你在你的php.ini URL的fopen啓用,你可以做到以下幾點:
include('http://www.example.com/script.php?param=1&other=2');
不過我覺得你只是希望分享PHP和所包含的文件之間的值。包含的文件將可以訪問所包含的範圍中定義的所有變量。因此,此示例中的include將能夠訪問$a
。
$a = "hello include";
include('local.php');
是的,工作,謝謝。 –