我有一个名为ajaxfunctions.php的XAJAX文件,其中包含一些函数:
function show_gallery($id){
$objResponse = new xajaxResponse();
if(!$_SESSION["g".removeScript($id)]){
$_SESSION["g".removeScript($id)]=1;
updateCounterGallery($id);
}
$objResponse->addScriptCall("popupImages", "./cportal /form/user_gallery_ajax.php?id=".$id."");
return $objResponse;
}
当我调用xajax_show_gallery(24)时,在原始函数中,参数错过了。此问题发生在此文件中的每个调用函数
中