出错信息: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;
}