摘要: 安装nginx,出错最多就是需要安装pcre扩展来支持url的重写。首先下载并解压pcrecd /home/yanwget ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/pcre-8.35.tar.gztar xf pcre-8.35.t... 阅读全文
posted @ 2015-03-28 15:23 小言s 阅读(211) 评论(0) 推荐(0) 编辑
摘要: 假设网站根目录为 /site/www/ ,使用nginx服务器,网站的拥有者为nginx,用户组为www。1.设置网站根目录的拥有者及用户组chown -R nginx:www /site/www2.设置网站目录权限cd /site/wwwfind -type d -exec chmod 0750 ... 阅读全文
posted @ 2015-03-28 10:12 小言s 阅读(574) 评论(0) 推荐(0) 编辑
摘要: 做个记录,javascript 如何创建类?有早期的,有原型的,有构造函数的// early javascript objectvar o = {};o.color = 'red';o.showColor = function () { alert(this.color);};o.showColor();// prototypefunction Car() {}Car.prototype.color = 'red';Car.prototype.doors = 4;Car.prototype.mpg = 23;Car.prototype.drivers = new 阅读全文
posted @ 2013-09-26 17:13 小言s 阅读(298) 评论(0) 推荐(0) 编辑
摘要: 事件原理JS的事件原理,先看一段HTML。ExampleClick Me点击Click Me,会发生什么事呢?DOM支持事件捕获(event capturing)及事件冒泡(event bubbling),前者是netscape浏览器的事件处理机制,后者是ie的处理机制。netscape的事件捕获模型也叫top-down model,从上往下,直到target(div)。 而IE是从target(div)一直往上传递事件,就像一个气泡从水底往上冒。例子这是一个事件冒泡的例子,alert input修改这一句// oEvent.cancelBubble = true;则alert结果为 inpu 阅读全文
posted @ 2013-09-26 11:31 小言s 阅读(377) 评论(0) 推荐(0) 编辑
摘要: dos2unix /path/to/filename.php crontab -e10 6 * * * /path/to/filename.phpchomod +x /path/to/filename.php#!/usr/bin/php -q<?phpfile_put_contents('/path/to/log', date('Y-m-d H:i:s')."\n",FILE_APPEND);?>这个计划任务每天6点10时执行filename.php文件,简单的写入一行时间到log日志里. 阅读全文
posted @ 2013-05-30 18:45 小言s 阅读(157) 评论(0) 推荐(0) 编辑
摘要: +--------------------------------------------------------+MVC DESIGN PATTERN @author arist @time 2013/1/4 @qq 240382473 @email arist1213@yahoo.com @version smvc 1.0 ... 阅读全文
posted @ 2013-01-11 23:29 小言s 阅读(700) 评论(2) 推荐(0) 编辑
摘要: 这篇博文是阅读老外写的博文后,自己参照了他的思想实现的PHP版本。若有不足,请善意指正。原文链接。请看如下的图片: 吊扇和灯泡,2个电子设备。 2个开关,一个普通的,一个时尚的。开关可以用来控制电子设备的开和关。不管你用普通的开关还是时尚的开关,它都能控制电子设备的开关。或许这是废话,可很多事情都是从简单的概念开始的,比如我们学英文,先从26个字母开始,然后学习单词,等我们积累了一定单词的时候,我们利用各种介词和连接词把单词拼接在一起形成有意义的句子, I want(动词) to(介词) learn programming.如果你需要着手写作一本书的话,你需... 阅读全文
posted @ 2013-01-10 20:31 小言s 阅读(526) 评论(0) 推荐(0) 编辑
摘要: 2.1 变量名变量名由字母和数字组成,第一个字符必须是字母,下划线 "_" 也算是一个字母,变量名是严格区分大小写的,除了常用的关键字,如 if else while int float ... 其他的都能用。 变量的命名很重要,基本遵循功能驱动的方式,简洁、带有说明的英文单词,c好像喜欢用小写及英文单词的缩写来命名,可以借鉴。2.2 数据类型char 字符串 int 整型 float 浮点型 double 双精度型 。2个限定符 unsigned 非负数 signed 实数 ,如果是32位的计算机,chars 含有8个bits , unsigned chars 的范围是 阅读全文
posted @ 2012-09-18 23:10 小言s 阅读(328) 评论(0) 推荐(0) 编辑
摘要: Exercise 1-1. Run the ``hello, world'' program on your system. Experiment with leavingout parts of the program, to see what error messages you get.Exercise 1-2. Experiment to find out what happens when prints's argument string contains\c, where c is some character not listed above.Exerci 阅读全文
posted @ 2012-09-16 16:14 小言s 阅读(520) 评论(0) 推荐(0) 编辑
摘要: 因为想要成为高级PHPER,所以开始认真学习C语言,我看的书名为 C K&amp;R.pdf。这系列文章将作为读书笔记及心得不定时的发布到博客上。The first c program这是摄氏与华氏温度转换的公式:C=(5/9)(F-32) 1 /* 引入库文件 */ 2 #include <stdio.h> 3 #include <stdlib.h> 4 /* 入口函数 */ 5 main() 6 { 7 /* 定义变量 */ 8 int fahr, celsius; 9 int lower, upper, step;10 11 /* 初始化变量的值 *... 阅读全文
posted @ 2012-09-16 14:50 小言s 阅读(330) 评论(0) 推荐(0) 编辑