
技术
christianok
做一件事情最好的时间是十年前,其次是现在
展开
-
配置fastcgi与PHP-fpm通信配置
server{ listen 80; root /wwwweb/projects/crm index index.html index.htm index.php location / { try_files $uri $uri/ /index.php } location ~\....原创 2018-06-06 12:43:29 · 337 阅读 · 0 评论 -
设计模式之观察者模式
interface IObserver{ function changed($send, $args); } interface IObservable{ function addObserver($name); } class UserListLogger implements IObserver{ public function onchanged(...原创 2018-06-07 22:01:20 · 111 阅读 · 0 评论