当前位置: 首页 > 工具软件 > AMFPHP > 使用案例 >

运行amfphp范例出错

周马鲁
2023-12-01

出错信息:Fatal error : Cannot access empty property in D:/AppServ/www/amfphp/util/ServiceBrowser.php on line 294

 

将:function cmp ($a, $b)
        {
             global $w_o;
             if ($a->$w_o == $b->$w_o) return 0;
             return ($a->$w_o < $b->$w_o) ? -1 : 1;
        }

 

替换成:function cmp ($a, $b)
        {
            if ($a->priority == $b->priority) return 0;
            return ($a->priority < $b->priority) ? 1 : -1;
        }

 类似资料: