當前位置: 首頁>>代碼示例>>PHP>>正文


PHP Playlist::setPath方法代碼示例

本文整理匯總了PHP中Playlist::setPath方法的典型用法代碼示例。如果您正苦於以下問題:PHP Playlist::setPath方法的具體用法?PHP Playlist::setPath怎麽用?PHP Playlist::setPath使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在Playlist的用法示例。


在下文中一共展示了Playlist::setPath方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: openPlaylist

 /**
  * Open playlist by full path, including filename.
  * @param String $fullPath
  * @return Playlist
  */
 private function openPlaylist($fullPath)
 {
     $playlist = new Playlist();
     if ($fullPath) {
         $xml = @simplexml_load_file($fullPath, 'SimpleXMLElement', LIBXML_NOCDATA);
         if (!$xml) {
             throw new Exception("Error loading Playlist on '" . $fullPath . "'.");
         }
         $attributes = $xml->attributes();
         $playlist->setFilename((string) basename($fullPath));
         $playlist->setPath((string) dirname($fullPath));
         if ($attributes['name']) {
             $playlist->setName((string) $attributes['name']);
         }
         if ($attributes['description']) {
             $playlist->setDescription((string) $attributes['description']);
         }
         //Get playlist links
         foreach ($xml->children() as $second_gen) {
             $playlistLink = new PlaylistLink();
             //Get node attributes
             $attributes = $second_gen->attributes();
             $playlistLink->setKey((string) $attributes['key']);
             if ($attributes['type']) {
                 $playlistLink->setType((string) $attributes['type']);
             }
             if ($attributes['thumbnail']) {
                 $playlistLink->setThumbnail((string) $attributes['thumbnail']);
             }
             //Get child nodes
             if ($second_gen->title) {
                 $playlistLink->setTitle((string) $second_gen->title);
             }
             if ($second_gen->description) {
                 $playlistLink->setDescription((string) $second_gen->description);
             }
             if ($second_gen->format) {
                 $playlistLink->setFormat((string) $second_gen->format);
             }
             if ($second_gen->filename) {
                 $playlistLink->setFilename((string) $second_gen->filename);
             }
             if ($second_gen->link) {
                 $playlistLink->setLink((string) $second_gen->link);
             }
             if ($second_gen->language) {
                 $playlistLink->setLanguage((string) $second_gen->language);
             }
             //Get ids
             $order = 1;
             $second_gen = $second_gen->part;
             foreach ($second_gen->children() as $third_gen) {
                 $attributes = $third_gen->attributes();
                 if ($attributes['order']) {
                     $playlistLink->addId((int) $attributes['order'], (string) $third_gen);
                 } else {
                     ++$order;
                     $playlistLink->addId((int) $order, (string) $third_gen);
                 }
             }
             //Add link to playlist
             $playlist->addPlaylistLink($playlistLink);
         }
     }
     return $playlist;
 }
開發者ID:johnymarek,項目名稱:eboda-hd-for-all-500,代碼行數:71,代碼來源:ViewPlaylistPageAction.php


注:本文中的Playlist::setPath方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。