0
我被迫使用phpquery :: getJson的體系結構的原因,因爲Curl php擴展給我一些問題(可能我無法正確設置它)。我希望直接使用getJson(我知道我也可以使用phpQuery :: ajax函數,並在手動解析結果後),所以如果有人比我更不專業,也可以使用此解決方案。phpquery getJson和Zend Json問題
你好我想利用這個:
phpQuery::getjson($url)
或其它版本:
phpQuery::ajax(array(
'type' => 'GET',
'url' => $url,
'data' => array('prova'=>'ciao'),
'success' => getJsCallback($doc),
'dataType' => 'json',
));
但它說:
Warning: require_once(Zend/Json.php): failed to open stream:
No such file or directory in /home/giuseppe/homeProj/phpQuery/phpQuery/phpQuery/Zend/Json/Decoder.php
所以我手動添加從ZendFramework: 的Zend /Json.php Zend/Json/Expr.php
,這讓我:
Fatal error: Uncaught exception 'Zend_Json_Exception' with message 'Illegal Token'
如果任何人有解決方案,並想與大家分享,他歡迎 感謝