PHP门面模式
摘要:https://baijiahao.baidu.com/s?id=1636109114016642554&wfr=spider&for=pc https://learnku.com/docs/php-design-patterns/2018/Facade/1502
阅读全文
mysql 复合索引和多个单列索引的效率比较
摘要:https://blog.csdn.net/shachejiayou/article/details/46347257 https://blog.csdn.net/qq_15037231/article/details/89356886?utm_medium=distribute.pc_releva
阅读全文
PHP 对象池模式
摘要:原文:https://designpatternsphp.readthedocs.io/zh_CN/latest/Creational/Pool/README.html 1 <?php 2 3 namespace Design\Patterns\Creational\Pool; 4 5 use Co
阅读全文
PHP 对象继承的机制
摘要:看yii源码时候,在看run方法的时候 ,有一个handleRequest方法,写在baseApplication,调用他的this指得是webApplication ,对此产生了疑问 。上网查了PHP对象继承,$this指向问题。如下 https://zhidao.baidu.com/questi
阅读全文
yii 源码分析 1 入口文件
摘要:https://www.cnblogs.com/yhl664123701/p/5532135.html public function __construct($config = []) // base\application.php文件中的方法 { Yii::$app = $this; //yii
阅读全文
PHP 根据经纬度计算两点距离(转)
摘要:/** * @param $lat1 * @param $lng1 * @param $lat2 * @param $lng2 * @return float 结果以【米】为单位 */ function _getDistance($lat1, $lng1, $lat2, $lng2) { $eart
阅读全文
yii 打印SQL
摘要:echo Location::find() ->where(['user_id' => $user_id]) ->andWhere(['and', ['>', 'location_update_time', $time], ['<', 'location_update_time', $time+86
阅读全文
虚拟地址空间大小受什么限制
摘要:虚拟地址空间大小受(外存容量和CPU地址表示的范围)限制
阅读全文
worker_connections are not enough
摘要:worker_connections are not enough : https://blog.csdn.net/m0_37263637/article/details/80813881
阅读全文
PHPstudy启动mysql失败
摘要:查看mysql的3306端口是否被占用 我是用Windows的记事本打开my.ini 文件进行修改的。估计原因出在这里,解决办法就是使用sublime(反正就是不要用记事本,用一个其他的编辑器)打开,吧之前的配置内容重新写到一个新的my.ini文件,重启mysql就OK了。应该是记事本吧字符编码格式
阅读全文