1 Star 1 Fork 0

现在成为者/面向接口

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
工厂模式.php 496 Bytes
一键复制 编辑 原始数据 按行查看 历史
<?php
/**
*接口类和抽象类以及设计模式
*/
echo "测试环境";
echo "<br>";
echo "<hr>";
class Memcache
//class Reids
{
public function set($k,$v)
{
}
public function get($k)
{
}
public function delete($k)
{
}
}
//$cache = new Memcache();
//$cache = new Reids();
class Cache
{
public static function factory()
{
return new Memcache();
// return new Reids();
}
}
$cache =Cache::factory();
$cache->set();
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
PHP
1
https://gitee.com/zhaofafa/interface_oriented.git
git@gitee.com:zhaofafa/interface_oriented.git
zhaofafa
interface_oriented
面向接口
master

搜索帮助