随笔分类 - PHP
摘要:参考教程: https://www.cnblogs.com/mchina/archive/2012/12/18/2816717.html 1、安装Samba yum install samba samba client samba swat 2、将/Users/chengguilu/summary/
阅读全文
摘要:$ svn co depth=empty file:///usr/local/svn/calc calc_new $ cd calc_new $ svn up readme.txt 其中,calc_new为checkout后的文件夹名,自己可以随意指定,执行svn co命令后,会得到一个名为calc
阅读全文
摘要:http://lq2419.blog.51cto.com/1365130/1167448
阅读全文
摘要:$x = 5; echo $x; echo " "; // echo ++$x + $x; //6+6=12 $x=6 // echo ++$x + 5; //6+5=12 $x=6 // echo $x++ + 5; //5+5=10 $x=6 // echo $x++ + $x++; //5+6
阅读全文
摘要:http://yansu.org/2014/03/20/php debug with xdebug.html
阅读全文
摘要:https://my.oschina.net/xianggao/blog/678644 http://www.cnblogs.com/ggjucheng/archive/2012/02/02/2335495.html http://www.jianshu.com/p/2461535c38f3 htt
阅读全文
摘要:array_pop 将数组最后一个元素弹出 array_push 将一个或者多个元素插入数组末尾 array_shift 将数组开头元素移出数组 array_unshift 将一个或多个元素插入数组开头 array_map 为数组每一个元素调用回调函数 array_chunk 将一个数组分割成多个
阅读全文
摘要:1、mac安装redis: https://my.oschina.net/jackieyeah/blog/524583 修改源码、编译安装步骤: 1、将源码copy至目录/usr/local/redis 2、在源码目录执行make,有必要的话执行make test,再make install; 3、
阅读全文
摘要:Jmeter的使用 步骤: 1、进入bin目录 /Users/chengguilu/forbidden delete/apache jmeter 3.1/bin 2、sh jmeter 打开软件界面 https://www.linuxdashen.com/ubuntu%E5%AE%89%E8%A3%
阅读全文
摘要:http://www.plhwin.com/2014/06/13/web security sql/ https://github.com/astaxie/build web application with golang/blob/master/zh/09.4.md http://blog.csd
阅读全文
摘要:https://zh.wikipedia.org/wiki/HTTP%E6%8C%81%E4%B9%85%E8%BF%9E%E6%8E%A5 http://51write.github.io/2014/04/09/keepalive/
阅读全文
摘要:csrf: http://www.cnblogs.com/hyddd/archive/2009/04/09/1432744.html https://gold.xitu.io/post/583d6384a22b9d006a93c868 http://www.freebuf.com/articles/
阅读全文
摘要:https://www.oschina.net/news/77354/http get post different http://www.jcodecraeer.com/a/anzhuokaifa/androidkaifa/2014/0404/1611.html 总结: Http定义了与服务器交互
阅读全文
摘要:http://blog.csdn.net/u013124721/article/details/55509313?locationNum=15&fps=1 http://designpatternsphp.readthedocs.io/zh_CN/latest/README.html http://
阅读全文
摘要:单例模式的主要作用就是保证面向对象程序设计中一个类只有一个实例对象存在,在很多操作中都会用到这种技术,比如,建立文件目录、数据库连接都会用到这种技术。 test();
阅读全文
摘要:http://www.ctolib.com/topics 21262.html http://cnn237111.blog.51cto.com/2359144/1284085 http://blog.csdn.net/ydxlt/article/details/50621821 http://www
阅读全文
摘要:2. SESSION 与 COOKIE的区别是什么,请从协议,产生的原因与作用说明? Session是服务器端保存客户端状态信息的方案,一般保存在服务器端内存中,session超时时间在服务器端进行设置。 Cookie是客户端保存信息的方案,一般是以文件的形式进行保存,cookie清空时间是在客户机
阅读全文
摘要:1、php -v 与phpinfo(); 不符,查看centos是否有自带的php;更改centos环境变量 /etc/profile,source /etc/profile生效; 2、pecl install swoole 安装swoole
阅读全文
摘要:http://camnpr.com/php-python/1715.html 巧用array_map()和array_reduce()替代foreach循环
阅读全文

浙公网安备 33010602011771号