nl2br真正的用法
最近开发中,遇到一处日志里有\n导致换行引起的bug,感觉很简单,直接使用nl2br过滤,结果发现问题依然存在。
特意翻看了下手册,描述如下:
nl2br — 在字符串所有新行之前插入 HTML 换行标记
在字符串 string 所有新行之前插入 '<br />' 或 '<br>',并返回。
好吧,恍然大悟,这货不是用来过滤\n的,还是踏踏实实用str_replace吧。
最近开发中,遇到一处日志里有\n导致换行引起的bug,感觉很简单,直接使用nl2br过滤,结果发现问题依然存在。
特意翻看了下手册,描述如下:
nl2br — 在字符串所有新行之前插入 HTML 换行标记
在字符串 string 所有新行之前插入 '<br />' 或 '<br>',并返回。
好吧,恍然大悟,这货不是用来过滤\n的,还是踏踏实实用str_replace吧。
Nginx服务器配置问题,解决方法见下面地址:
http://www.laruence.com/2009/11/13/1138.html
更改Index.php代码,增加兼容跳转处理。
因为有现成的转换程序,整个过程基本顺利。
切换到Typecho,明显能感觉到速度上变快。
Sublime Text 之前装了 Markdown Editing 插件,今天删除之后,打开.md格式的文件,一直报下面这个错误。
error: Error loading colour scheme Packages/MarkdownEditing/MarkdownEditor.tmTheme: Error parsing plist xml: Failed to open file In file "Packages/MarkdownEditing/MarkdownEditor.tmTheme"
解决方法:
按ctrl + shift + p ,然后输入 set syntax:html 即可。
之前通过Apache里设置auto_prepend_file / auto_append_file 来实现记录页面执行时间,后来切换到Nginx后就没有设置这个了。
搜索一番,Nginx同样支持这种设置的。
配置如下:
fastcgi_param PHP_VALUE "auto_prepend_file=prepend.php"; fastcgi_param PHP_VALUE "auto_append_file=append.php";
配置好后,重新Nginx,查看phpinfo()的输出,发现有时候auto_prepend_file设置为空,如图。
[caption id="attachment_1204" align="alignnone" width="300"] nginx[/caption]
搜索一番后,发现Nginx不支持多条PHP_VALUE的设置。
Quick little post on a problem I had while trying to use XHGui with my Nginx/PHP-FPM setup. I needed to be able to pass the auto_prepend_file and auto_append_file settings to PHP-FPM from Nginx. In apache you can declare multiple php_value settings. However, when I did the same in nginx, it would only reflect the second setting. Turns out you need to set all of your php_value’s in Nginx in a single string, and you separate them by new line characters.
如果有多条,需要将PHP_VALUE的设置合并到一条记录上,以" \n "进行分隔。
重新配置,如下:
fastcgi_param PHP_VALUE "auto_prepend_file=prepend.php \n auto_append_file=append.php";
重启Nginx,查看phpinfo(),配置生效了。
代码如下:
function test($a, $b = time()) { echo 'test'; }
执行结果如下:
Parse error: syntax error, unexpected '(', expecting ')' in C:\xampp\htdocs\index.php on line 3
你会发现,PHP报错了。
为什么呢?
看PHP官方对于函数参数的说明:
函数可以定义 C++ 风格的标量参数默认值。
PHP 还允许使用数组 array 和特殊类型 NULL 作为默认参数。
默认值必须是常量表达式,不能是诸如变量,类成员,或者函数调用等。
注意最后一句,默认值不能是变量,类成员或者函数调用。