中山php|最优网络中山做网站 中山php建站

最优良人

Posts Tagged With: 字符串

php反斜线引用字符串

2011/08/15 at 01:09 » Comments (19)

addslashes:使用反斜线引用字符串 ,返回字符串,该字符串为了数据库查询语句等的需要在某些字符前加上了反斜线,这些字符是单引号(')、双引号(")、反斜线(\)与 NUL(NULL 字符)。 stripslashes 相反的操作,或者如果系统自动开启了魔法引号(默认是开启的),如果想得到原来没被转义过的字符串,可以使用此函数 比如在正则的逆向引用中: $find[] = "/<a(.*)href=(\"|')?(\/.*)(\"|'|\s)/Uei"; $replace[] ="stripslashes(str_replace('$','$@&#','$0'));"; 去掉php自动加上的反斜杠 more »

判断一个数组里是否都是空字符串

2011/08/14 at 01:10 » Comments (3)

有时我们要把一个全为空字符串组成的数组如:array('','','');当成是空对待,因为里面不含任何数据 使用empty()显然是不行的,因为里面包含了三个值,只是这些值都是空字符串,用count()也不可以 那么可以用一种变通的方式,先把数组用implode转换成字符串,再判断字符串是否为真就可以了: $a=array('',''); $a = implode('',$a);i f($a)'为真'; else echo '为假'; more »

php字符串首字母转换大小写

2011/08/13 at 18:04 » Comments (19)

首字母变大写:ucwords() <?php $foo = 'hello world!'; $foo = ucwords($foo); // Hello World! $bar = 'HELLO WORLD!'; $bar = ucwords($bar); ...more »