上一页 1 ··· 3 4 5 6 7 8 9 下一页
————转载黎明破晓时 一、登录redis官网下载redis-3.0.7.tar.gz 二、通过ftp工具上传至自己的服务器中 #还可以通过wget http://download.redis.io/releases/redis-3.0.7.tar.gz 三、tar -zxvf redis-3.0. Read More
posted @ 2016-04-09 14:16 不解凡忧 Views(116) Comments(0) Diggs(0) Edit
1.git自学网站 廖雪峰的官方网站 2.安装一个简单的git 创建用户名、邮箱 git config --global user.name "your name" git config --global user.email "your email@fsd.com" #创建一个git分布式控制管理 Read More
posted @ 2016-04-08 16:14 不解凡忧 Views(223) Comments(0) Diggs(0) Edit
转自:http://blog.163.com/wang_ly2442/blog/static/9494340720128355054551/ 1. 启动时进入字符界面,后来想切换到图形界面:使用startx 或 init 5(注:startx只是在原有运行级别3上加了图形界面,运行级别没变,而ini Read More
posted @ 2016-04-07 09:21 不解凡忧 Views(281) Comments(0) Diggs(0) Edit
效果图: 思路: 将一个tr中的数组放在一个数组中,然后进行遍历 代码: Read More
posted @ 2016-04-06 15:09 不解凡忧 Views(196) Comments(0) Diggs(0) Edit
posted @ 2016-04-05 07:25 不解凡忧 Views(227) Comments(0) Diggs(0) Edit
例子:array(1){ [0]=>array( 'id'=>111, 'name'=>'aaaa' )}由上面的例子转化成下面对象,怎么转化?急急 急 谢谢array(1) { [0]=> object(stdClass)#23 (10) { ["id"]=>111, ["name"]=>'aaaa... Read More
posted @ 2016-04-01 09:33 不解凡忧 Views(476) Comments(0) Diggs(0) Edit
A/B测试 A/B测试是一种新兴的网页优化方法,可以用于增加转化率注册率等网页指标。。A/B测试的目的在于通过科学的实验设计、采样样本代表性、流量分割与小流量测试等方式来获得具有代表性的实验结论,并确信该结论在推广到全部流量可信。 如何使用Apache的ab工具进行网站性能测试 Apache服务器自 Read More
posted @ 2016-04-01 09:11 不解凡忧 Views(386) Comments(0) Diggs(0) Edit
<?phpecho min(2, 3, 1, 6, 7); // 1echo min(array(2, 4, 5)); // 2echo min(0, 'hello'); // 0echo min('hello', 0); // helloecho min('hello', -1); // -1// Read More
posted @ 2016-03-31 18:31 不解凡忧 Views(1369) Comments(0) Diggs(0) Edit
在视图层利用表单小部件生成表单时,field只能是数据库中存在的, 例如: use yii\helpers\Html; use yii\widgets\ActiveForm; use yii\captcha\Captcha; 其中,确认密码和验证码等字段我们是不需要在数据库中设计的,这时,需要在模型 Read More
posted @ 2016-03-31 13:34 不解凡忧 Views(379) Comments(0) Diggs(0) Edit
如何解决网站分页导致的SEO问题 分页(pagination)是一种自动分页机制,可以将移动Web窗体中的内容分割成一组组较小的页进行呈现,以适合于特定的设备,该机制还呈现可用于浏览到其他页的用户界面元素。 虽然说对于网站中出现的分页现象(如:栏目列表分页、文章内容分页),大家都习以为常了,感觉使用 Read More
posted @ 2016-03-30 19:45 不解凡忧 Views(376) Comments(0) Diggs(0) Edit
上一页 1 ··· 3 4 5 6 7 8 9 下一页