1、字串的處理:trim()、ltrim()、rtrim()
$name=trim($_POST['name']); $name=trim($_POST['password']); $name=trim($_POST['email']);
trim ()函數可以去除字串的起始位置和結束位置的空格,並將結果字串傳回,預設移除的字元是換行符和回車符(n和r),水平和垂直製表符(t和X0B)
ltrim()函數只從字符的開始處(左邊)去除空格
rtrim()函數只從函數的結束處(右邊)去除空格
2、格式化字串以便顯示
①使用HTML格式化:n12br()函數
在字串中的新行(n)之前插入換行符
<span style="white-space:pre"> </span><pre name="code" class="html"><?php echo nl2br("One line.\nAnother line."); ?>
One line. Another line.
②為列印輸出而格式化字串
printf()結構
$s="world"); printf("Hello %s",$s);
函数 | 描述 | 使用 $subject=Hello World | 返回值 |
strtoupper() | 将字符串转为大写 | strtoupper($subject ) | HELLO WORLD |
strtolower() | 将字符串转为小写 | strtolower($subject ) | hello world |
ucfirst() | 如果字符串第一个字符是字符,将其转为大写 | ucfirst($subject ) | Hello world |
ucwords() | 将字符串的每个单词的首字母大写 | ucwords($subject ) | Hello World |
-------------------- -------------------------------------
未完成
以上就介紹了PHP日記(一)字串操作,包括了php,字串方面的內容,希望對PHP教程有興趣的朋友有幫助。