这是代码:
...
require_once 'Zend/Loader.php'; // the Zend dir must be in your include_path
Zend_Loader::loadClass('Zend_Gdata_YouTube');
Zend_Loader::loadClass('Zend_Uri_Http');
$yt = new Zend_Gdata_YouTube();
$videoEntry = $yt->getVideoEntry($id_video);
....
在这个脚本的几行中,有时(我不明白为什么这种情况只会发生几次,而不是在其他情况下,似乎是随机的) Zend_Gdata_YouTube() 或 getVideoEntry($id_video) 没有返回,脚本就死了。在脚本的文件夹中没有日志文件,所以我不明白它在运行时会发生什么。任何帮助或建议将不胜感激,谢谢。