$uri = $_SERVER['REQUEST_URI'];
$isindex = strpos($uri,'index.php/');
if ($isindex){
$uri = substr($uri,$isindex + strlen('index.php/'));
}
重定向写了,感觉还是在 function dispatch()代码里面写比较方便,兼容性更强。
$isindex = strpos($uri,'index.php/');
if ($isindex){
$uri = substr($uri,$isindex + strlen('index.php/'));
}
重定向写了,感觉还是在 function dispatch()代码里面写比较方便,兼容性更强。
2019-10-12
最赞回答 / 慕粉19021142
使用枚举,表格驱动的方法优化if...else...代码 粗糙写法如下,代码其实还可以优化 class AdvertisingRoleEnum{ const MALE = 1; const FEMALE = 0; public static function getStrategy($gen...
2019-08-24
最新回答 / qq_慕斯卡6187973
我想到的是专用于数据库的连接类。因为数据库是一种资源,如果不用单例模式做数据库连接的类的话,在脚本中任由多次连接这个数据库的话,会造成服务器的压力,因为数据库有最大连接数的概念。单例模式说白了,意思就是保证只能实例化一次数据库连接。无论你在代码中有多少个new 操作。
2019-08-13