me lo sono letto eccome il codice, ma a continuo a non capire.
Inoltre io l'ho alterato mettendo un echo nel ciclo FOREACH, che teoricamente dovrebbe essere stampato ad ogni video estrapolato dal sito... Ebbene, l'echo non viene mai eseguito, indice che non mi viene restituito alcun risultato.
Codice PHP:
while(true) {
try{
if($page > $pages)
break;
$videoResponse = getRedtubeVideos($page);
// If you want to get videos from specific category you should pass second parameter to getRedtubeVideos function which is the name of the category.
// getRedtubeVideos($page,'CATEGORY_NAME_HERE');
$videos = $videoResponse->videos;
foreach($videos as $video) {
$video_obj = $video->video;
echo('st');
// $video_obj->title
// $video_obj->duration ... etc
// you can do whatever you want with that video details
}