0

我正在使用一个已经工作多年的 yt-getuseruploads-script,但它突然中止而没有错误消息。它是这样开始的

<?php
error_reporting(E_ERROR | E_WARNING | E_PARSE);
ignore_user_abort(true);

function anmelden_yt($name,$passwort)
{
$yt_source = 'known';  
$yt_api_key = 'key';
$yt = null;    
$authenticationURL= 'https://www.google.com/accounts/ClientLogin';  
$httpClient = Zend_Gdata_ClientLogin::getHttpClient(  
$username = $name,  
$password = $passwort,  
$service = 'youtube',  
$client = null,  
$source = $yt_source, // a short string identifying your application  
$loginToken = null,  
$loginCaptcha = null,  
$authenticationURL); 
abschnitt("Login");
return new Zend_Gdata_YouTube($httpClient, $yt_source, NULL, $yt_api_key); 
}


require_once("Zend/Gdata/ClientLogin.php");  
require_once("Zend/Gdata/HttpClient.php");  
require_once("Zend/Gdata/YouTube.php"); 
require_once("Zend/Gdata/App/MediaFileSource.php");  
require_once("Zend/Gdata/App/HttpException.php");  
require_once('Zend/Uri/Http.php');
require_once 'Zend/Loader.php'; 
Zend_Loader::loadClass('Zend_Gdata_YouTube'); 
Zend_Loader::loadClass('Zend_Gdata_AuthSub');
Zend_Loader::loadClass('Zend_Gdata_ClientLogin'); 

echo "1<br>";  
$yt = anmelden_yt($name,$pass);
echo "2<br>";
$videoFeed = $yt->getUserUploads('Google');
sleep(0.5);
echo "3<br>";


    @ob_flush();
@flush();

?>

问题是,3 永远不会被打印,输出是

1
2

所以即使 error_reporting(E_ERROR | E_WARNING | E_PARSE); 我没有收到任何错误消息,除了提到的结果之外什么也没有。没有过早的休息或死亡。

4

1 回答 1

1

你确定这是一个时间限制错误吗?试着做 :

ini_set('display_errors','1');

首先看看是否有错误

于 2013-06-21T12:48:34.810 回答