目前,语言的标签表示法的国际标准是RFC 4646,名称是《Tags for Identifying Languages》。简单说,这个文件规定,一种语言的标签应该按照如下方式排列:language-script-region-variant-extension-privateuse1. langu...
分类:
Web程序 时间:
2015-07-26 17:21:04
阅读次数:
128
在前一阵在的面试过程中面试官曾经问我,如果字符串中的标签未闭合,strip_tags会如何处理?
在php的官方文档中对strip_tags的表述如下;
strip_tags — 从字符串中去除 HTML 和 PHP 标记
注意文档下方的warning:
由于 strip_tags() 无法实际验证
HTML,不完整或者破损标签将导致更多的数据被删除。
这...
分类:
Web程序 时间:
2015-07-25 23:08:02
阅读次数:
400
系统自带的函数mb_substr可以截取多字节的字符strip_tags—从字符串中去除HTML和PHP标记通过这两个函数便可解决示例:$str="<span>我爱php</span>";echomb_substr(strip_tags($str),0,3,‘utf-8‘);输出:我爱p
分类:
Web程序 时间:
2015-07-24 18:42:50
阅读次数:
160
NUMTSN - 369 Numbers
no tags
7. 369 numbers
A number is said to be a 369 number if
The count of 3s is equal to count of 6s and the count of 6s is equal to count of 9s.The count of 3s ...
分类:
其他好文 时间:
2015-07-24 16:13:42
阅读次数:
454
LUCIFER - LUCIFER Number
no tags
Lucifer is the only human whi has defeated RA-ONE in a computer game ..
RA-One is after lucifer for revenge and G-One is there to protect him ...
All th...
分类:
其他好文 时间:
2015-07-24 14:19:59
阅读次数:
117
RAONE - Ra-One Numbers
no tags
In the War between good and evil . Ra-One is on the evil side and G-One on the good side.
Ra-One is fond of destroying cities and its G-one's duty to prote...
分类:
其他好文 时间:
2015-07-24 14:18:59
阅读次数:
456
make all
不加任何 target , 默认就是 all, 作用是编译软件make install
安装软件包,如果安装到系统目录,需要 root 权限make clean
清除编译产生的目标文件make distclean
可以同时清除编译的结果和 configure 输出的文件make tags
生成 etags 使用的 TAGS 文件make dist
生成软件发布包,为 t...
分类:
其他好文 时间:
2015-07-22 22:58:50
阅读次数:
191
如果你有一个很大的playbook,而你只想run其中的某个task,这个时候tags是你的最佳选择。如何使用呢?一、最常见的使用形式:抄取官方的实例:tasks: - yum: name={{ item }} state=installed with_items: - httpd - memcac...
分类:
其他好文 时间:
2015-07-21 23:56:32
阅读次数:
212
用 emacs 的 etags 生成 TAGS, 要查找 所有的 .h 和 .cpp 试了半天都不成,最后找到 GNU 才明白了 find 用的正则的格式先附上 GNU 的 find 的参考地址 : GUN find 的默认正则表达式格式格式简要说明如下:'+' '?' ‘\+' '\?' : 和其...
分类:
其他好文 时间:
2015-07-16 21:58:55
阅读次数:
120
定义和用法strip_tags() 函数剥去 HTML、XML 以及 PHP 的标签。语法strip_tags(string,allow)参数描述string必需。规定要检查的字符串。allow可选。规定允许的标签。这些标签不会被删除。提示和注释注释:该函数始终会剥离 HTML 注释。这点无法通过a...
分类:
Web程序 时间:
2015-07-16 19:29:58
阅读次数:
165