摘要:
'; sleep(1); //ob_end_flush(); //ob_flush(); //flush();} 阅读全文
摘要:
1 echo $a = 2|4|8,PHP_EOL;2 echo $a&8,PHP_EOL;//83 echo $a&4,PHP_EOL;//44 echo $a&2,PHP_EOL;//25 echo $a&16,PHP_EOL;//06 echo $a&32;//0由结果看参与按位或运算的数(2... 阅读全文
摘要:
1.Got error 28 from storage engine 磁盘空间不足 阅读全文
摘要:
1. 新建模块Test,新建IndexController,使用zf工具或者手动创建目录结构和文件完成即可2. 添加模块到项目模块列表--config/application.config.php文件中的modules键值对(zf创建模块时会自动完成这一步)3. 修改模块配置文件(本例中文件位置为:... 阅读全文
摘要:
The mysql libraries will automatically use Unix sockets if the host of "localhost" is used. To force TCP/IP you need to set an IP address. 阅读全文
摘要:
openssl pkcs12 -in ck.p12 -out ck.pem -nodes 阅读全文
摘要:
1. 新建Modules以一个名为Album的module为例,其目录结构如下(可使用zftool自动创建) 1 2 3 4 5 6 7 8 9101112 zf2-tutorial/ /module /Album /config ... 阅读全文
摘要:
Using the Built-in PHP CLI Server¶Alternatively — if you are using PHP 5.4 or above — you can use the built-in CLI server (cli-server). To do this, yo... 阅读全文