-1

我正在尝试将 ajax 响应值传递给 php 函数。

ajax.js

 xmlhttp.onreadystatechange=function(){
  if (xmlhttp.readyState==4 && xmlhttp.status==200){
    var a = xmlhttp.responseText;
    }
  }

我需要a在 PHP 函数中使用值。

测试.php

function testFun($a); 

这可能吗???谢谢您的帮助!!

4

2 回答 2

1
Try This:
/** JAVA SCRIPT **/
// create a request query
var queryString = "?send_param=" + a;

// send request query to php file
xmlhttp.open("GET", "test.php" + queryString, true);

xmlhttp.send(null);
/** JAVA SCRIPT END **/

/** PHP SCRIPT **/
[ test.php ]

<?php
// if $_REQUEST array is empty show error and die;
if (empty($_REQUEST)) {
die("Error: No request found");
} else {
// split the $_REQUEST array and make array key as php variable
extract($_REQUEST);
}

/**
* Function testFun
* @param string $a
*/
function testFun($a)
{
// return val
}

// Call the function
testFun($send_param);
?>

/** PHP SCRIPT END **/

I preferred to use $.ajax function instead to Java Script Ajax, Coz it's handy :) and to good.


[1]: http://php.net/manual/en/function.extract.php
于 2012-07-06T05:46:50.767 回答
0

编写另一个 AJAX 请求并传递a到包含该函数的 PHP 文件中,并将输入作为 GET 或 POST 读取,然后使用您认为合适的输出。使用像 jQuery 这样的 JS 框架将有助于缩短 AJAX 调用。

于 2012-07-06T05:33:19.087 回答