复制代码代码如下:
/**
* デリゲート モードの例
*
* @create_date: 2010-01-04
*/
class PlayList
{
var $_songs = array();
var $_object = null;
関数 PlayList($type)
{
$object = $type."PlayListDelegation";
$this->_object = new $object();
}
function addSong($location,$title)
{
$this->_songs[] = array("location"=>$location,"title"=>$title);
}
function getPlayList()
{
return $this->_object->getPlayList($this->_songs);
}
}
class mp3PlayListDelegation
{
function getPlayList($songs)
{
$aResult = array();
foreach($songs as $key=>$item)
{
$path = pathinfo($item['location']);
if(strto lower($item['extension']) == "mp3")
{
$aResult[] = $item;
}
}
$aResult を返します。
}
}
class rmvbPlayListDelegation
{
function getPlayList($songs)
{
$aResult = array();
foreach($songs as $key=>$item)
{
$path = pathinfo($item['location']);
if(strto lower($item['extension']) == "rmvb")
{
$aResult[] = $item;
}
}
$aResult を返します。
}
}
$oMP3PlayList = 新しい PlayList("mp3");
$oMP3PlayList->getPlayList();
$oRMVBPlayList = 新しいプレイリスト("rmvb");
$oRMVBPlayList->getPlayList();
?>
以上は、ヘッド ファースト デザイン モード php デザイン モード委任モードを介して、ヘッド ファースト デザイン モードの内容が含まれており、PHP 教則に関心のある友人の助けになることが望ましいです。