這是關於RAW php編碼的。我有一個頁面 - 「config.php」,這裏有一些聲明。在PHP中獲取函數聲明的值
//config.php
<?php
$myvalue = "This is a test";
include("functions.php");
?>
//functions.php
<?php
function testFunction()
{
$dd = $myvalue;
echo $dd;
}
?>
而且當我打電話「testFunction()」從另一個頁面像「頁面.php「我想讓它回聲」這是測試「。我怎樣才能做到這一點? 「config.php」包含在「page.php」中。希望這種情況是可以理解的。
//page.php
<?php
include('config.php');
testFunction();
?>
如果你想檢查你的函數是否存在/定義,你可以使用[function_exists](http://php.net/function_defined)就像'<?php echo function_exists('testFunction')?>' – user973254