PHP警告:缺少ajaxfunctions.php中所有函数的所有参数

时间:2014-01-20 17:45:59

标签: php arguments

我有一个名为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)时,在原始函数中,参数错过了。此问题发生在此文件中的每个调用函数

0 个答案:

没有答案