我有三个文件:
index.php
ajax.php
function.php
我想通过index.php
将全局变量从function.php
传递到ajax.php
。
因此index.php
中的提醒消息应为“2”。但实际上,结果为“1”,因为function.php
不知道$global_variable
。
以下是代码:
的index.php
<?php
$global_variable = 1;
?>
<script src="http://code.jquery.com/jquery-1.10.2.min.js"></script>
<script>
$.ajax({
type: "POST",
url: 'ajax.php',
success: function(data) {
alert(data);
}
});
</script>
ajax.php
<?php
include 'function.php';
$result = process_my_variable(1);
echo $result;
?>
function.php
<?php
function process_my_variable($new_variable) {
global $global_variable;
$result = $global_variable + $new_variable;
return $result;
}
?>
我不想将全局变量传递给ajax调用,因为我的真实项目有很多这样的变量,并且由于安全性,它们不应该显示。
怎么做?
答案 0 :(得分:3)
$.ajax({
type: "POST",
url: 'ajax.php',
data:{
global_variable:<?php echo $global_variable?>
},
success: function(data) {
alert(data);
}
});
您可以将数据对象发送到ajax.php页面
并在ajax.php页面上,您可以通过以下方式获取它:
<?php
include 'function.php';
$global_var=$_POST['global_variable'];
$result = process_my_variable($global_var);
echo $result;
?>
答案 1 :(得分:3)
index.php
和ajax.php
(包含function.php
)不同的程序。他们不共享变量。
您需要将数据存储在两个程序可以获取的位置(例如在SESSION中)或将数据从index.php
传递到浏览器,然后将其发送到ajax.php
in Ajax请求的查询字符串或POST主体。