ランダムな YouTube ビデオにリダイレクトするスクリプトを作成しようとしています。vidKey を取得し、各 $vidkey を配列に入れ、その配列をランダム化して、別の YouTube ビデオにリダイレクトするにはどうすればよいでしょうか?
$sxml = simplexml_load_file("http://gdata.youtube.com/feeds/api/users/TechTubeCentral/uploads?max-results=25");
foreach ($sxml->entry as $entry) {
$vidKey = substr(strrchr($entry->id,'/'),1);
}