摘要:header('Content-Description: File Transfer');header('Cache-Control: private, must-revalidate, post-check=0, pre-check=0, max-age=1');//header('Cache-C
阅读全文
摘要:一.对程序目录有要求,应用程序app的目录必须与cake框架的程序包在同一目录下二.从以下的第四部开始,就会有一些bug:步骤:1.GenerateyourfirstMigration(ifhaven’tgeneratedyet).2.Generateaschemafile.3.Dochangest...
阅读全文
摘要:Migrations plugin 安装使用方法 安装: 在应用程序app下 /app /plugins /migrations (Same location as other plugins) windows下: /path/to/php.exe cake.php migration geneat
阅读全文
摘要:1 @ini_set('memory_limit', '1G'); 2 $fp = fopen('E:/code/share/log.txt', 'r'); 3 if(fseek ($fp, 0, SEEK_END)!==-1){ 4 $maxPos = ftell($fp); 5 ...
阅读全文
摘要:二进制十进制十六进制缩写可以显示的表示法名称/意义00000000000NUL␀空字符(Null)00000001101SOH␁标题开始00000010202STX␂本文开始00000011303ETX␃本文结束00000100404EOT␄传输结束00000101505ENQ␅请求00000110...
阅读全文
摘要:修改wp-config.php文件,加入类似一下内容: 文件修改后,链接地址就跟随访问的域名而变化。
阅读全文
摘要:一个好用php的pdf插件,支持xhtml+css。 最重要的是免费开源,而且无需安装任何。 Started in 2002, TCPDF is now one of the world’s most active Open Source projects, used daily by millio
阅读全文
摘要:1.签根证书:openssl genrsa -des3 -out rootca.key 1024openssl req -new -key rootca.key -out rootca.csr -config F:\xampp\apache\bin\openssl.cnfopenssl req -...
阅读全文
摘要:1. If a method c++an be static, declare it static. Speed improvement is by a factor of 4. 如果一个方法可静态化,就对它做静态声明。速率可提升至4倍。 2. echo is faster than print. echo 比 print 快。 3. Use echo's multiple parameters instead of string concatenation. 使用echo的多重参数(译注:指用逗号而不是句点)代替字符串连接。 4. Set the maxvalue for your.
阅读全文
摘要:apt-getinstallapache2php5-mysqllibapache2-mod-php5mysql-server
阅读全文
摘要:1 function path_info($path, $type = null) { 2 $pathinfo = str_replace('%2F', '/', rawurlencode($path)); 3 $pathinfo = pathinfo($pathinfo); 4 ...
阅读全文