我调用了一个在我的 smsconfig.php 文件中定义的函数,例如
$GLOBAL_URL_OF_THE_SITE= "http://webfaction";
function get_site_url(){
return $GLOBAL_URL_OF_THE_SITE;
}
在我的 index.php 文件中,我包含该 smsconfig.php 文件,然后我正在执行以下操作:
<?php
include("smsconfig.php");
?>
<html>
<head >
<link rel="stylesheet" type="text/css" href="default.css" />
<script src="<?php echo get_site_url();?>/UI/jquery/jquery-1.7.2.min.js" type="text/javascript"></script>
不幸的是,我的 JS 没有加载,并且我在 firebug 中收到以下错误:
"NetworkError: 404 Not Found - http://webfaction/UI/%3Cbr%20/%3E%3Cb%3ENotice%3C/b%3E:%20%20Undefined%20variable:%20GLOBAL_URL_OF_THE_SITE%20in%20%3Cb%3E/opt/lampp/htdocs/UI/smsconfig.php%3C/b%3E%20on%20line%20%3Cb%3E11%3C/b%3E%3Cbr%20/%3E/UI/jquery/jquery-1.7.2.min.js"
请告诉我我做错了什么?