複製程式碼 程式碼如下:
/**
* 策略模式(Strategy.php)
*
* 定義一系列演算法,把它們一個個封裝起來,並且使它們可相互替換,使用得算法的變化可獨立於使用它的客戶
*
*/
// -- -以下是一系列演算法的封閉----
interface CacheTable
{
public function get($key);
public function set($key,$value);
public function del($key);
}
// 不使用快取
class NoCache implements CacheTable
{
public function __construct(){
echo "Use NoCache
";
}
public function get($key)
{
return false;
}
public function set($key,$value)
{
public function set($key,$value)
{
return true;
}
public function del($key)
{
return false;
}
}
//快取
class FileCache implements CacheTable
{
public function __construct()
{
echo "Use FileCache
";
// 檔案快取建構子
}
public function get($key )
{
// 檔案快取的get方法實作
}
public function set($key,$value)
{
// 檔案快取的set方法實作
}
public function del($key)
{
// 檔案快取的del方法實作
}
}
// TTServer
class TTCache implements CacheTable
// TTServer
class TTCache implements CacheTable
{
public function __construct()
{
echo "Use TTCache
";
// TTServer快取建構子
}
public function get($key)
{
// TTServer快取的get方法實作
}
public function set($key,$value)
{
// TTServer快取的set方法實作
}
public function del($key)
{
// TTServer快取的del方法實作
}
}
// -- 以下是使用不用快取的策略-- ----
class Model
{
private $_cache;
public function __construct()
{
$this->_cache = new NoCache();
}
public function setCache($cache)
{
$this->_cache = $cache;
}
}
class UserModel extends Model
{
{
}
class PorductModel extends Model
{
public function __construct()
{
$this->_cache = new TTCache();
}
}
}
$mdlUser = new UserModel();
$mdlProduct = new PorductModel();$mdlProduct->setCache(new FileCache()); // 改變快取策略?> 以上就介紹了strategy php設計模式 Strategy策略模式,包括了strategy方面的內容,希望對PHP教程有興趣的朋友有所幫助。