ghostinit.php 用法: ghostwu@dev:~/php/php1/10$ ls ghost ghostinit.php ghostwu@dev:~/php/php1/10$ ./ghost init pls input project name? hello pls input au ...
分类:
Web程序 时间:
2018-04-29 11:49:09
阅读次数:
217
数据库存储权限根据path_info判断用户请求的方法和类$info=$_SERVER[‘PATH_INFO‘];$class=explode(‘/‘,$info)[0];$method=explode(‘/‘,$info)[1];echo"类名:$class".PHP_EOL;echo"方法名:$method".PHP_EOL;
分类:
Web程序 时间:
2018-03-29 14:51:06
阅读次数:
154
代码:<?phpclasssingle{public$out;publicfunctiona($a){$this->out.=$a;return$this;}publicfunctionb($b){$this->out.=$b;return$this;}publicfunctionsay(){echo$this->out.PHP_EOL;}publicfunctionget
分类:
Web程序 时间:
2018-03-18 18:44:17
阅读次数:
209
str_pad (PHP 4 = 4.0.1, PHP 5, PHP 7) str_pad — Pad a string to a certain length with another string str_pad — 使用另一个字符串填充字符串为指定长度 Description Paramete ...
分类:
Web程序 时间:
2018-03-06 23:12:21
阅读次数:
245
PHP_EOL 代表php的换行符, 这个变量会根据平台而变, 在windows下会是/r/n, 在linux下是/n, 在mac下是/r 文章来源:刘俊涛的博客 地址:http://www.cnblogs.com/lovebing ...
分类:
Web程序 时间:
2017-11-22 17:51:36
阅读次数:
327
1 file_put_contents($path,$content.PHP_EOL,FILE_APPEND); //追加写文件 ...
分类:
移动开发 时间:
2017-11-22 10:58:10
阅读次数:
158
用原型实例指定创建对象的种类,并且拷贝这些原型创建新的对象. UML图: ...
分类:
其他好文 时间:
2017-11-05 12:17:52
阅读次数:
99
在unix世界换行就用/n来代替,但是windows为了体现他的不同,就用/r/n,更有意思的是在mac中用/r。因此unix系列用 /n,windows系列用 /r/n,mac用 /r,这样就用你写的程序在不同的平台上运行有着不少的麻烦。下面是PHP去除换行符的一些常见方法。第一种写法: $con ...
分类:
Web程序 时间:
2017-09-26 16:40:50
阅读次数:
163
PHP7 增加了可以为 unserialize() 提供过滤的特性,可以防止非法数据进行代码注入,提供了更安全的反序列化数据。 实例 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 <? ...
分类:
其他好文 时间:
2017-09-11 10:06:54
阅读次数:
236
一、Calander、日期/时间、HRTime扩展的对比 Calendar 日期/时间 HRTime 简介 历法扩展集包括了一系列用于在不同历法间进行转换的函数,它是以Julian Day计数为中介或标准来进行的。 Julian Day计数是以公元前的4713年的1月1日为起点的一种计数法。为了在不 ...
分类:
Web程序 时间:
2017-08-23 10:21:59
阅读次数:
266