单页上的具体5个全局变量

时间:2015-02-28 19:42:13

标签: php scope concrete5

<?php
$productsInc="products_export.php";

function productsUrl($category){
    global $accountNumber, $accountPassword, $productsInc; 
    echo "file is " . $productsInc;
}
?>

当这个页面单独运行时,echos&#34;文件是prodcuts_export.php&#34;, 但当它作为&#34; Single_Page&#34;在Concrete5中, 它回声&#34;文件是&#34;并且也没有错误

1 个答案:

答案 0 :(得分:1)

尝试将此添加到该文件vairable

$productsInc="/themes/YOURTHEMENAME/products_export.php";

我猜测你的products_export php文件不在任何子目录中,而是放在你的默认文件中。

希望这能为你排序!