PHP經常使用字符串函數。

nl2br 
功能:化換行符爲<br>php

複製代碼
<?php
$str = "cat isn't \n dog";
$result = nl2br($str);
echo $result;
/**結果
cat isn't
dog
*/
複製代碼

 



rtrim
功能:清除右邊的空白html

複製代碼
<?php
$str = "Hello world   ";
echo strlen($str)."<br>";
$result = rtrim($str);
echo strlen($result);
/**結果
14
11
*/
複製代碼

 




strip_tags
功能:清除字符串中html和php的標記數組

複製代碼
<?php
$str = "<font color = 'red'>Hello world</font>";
$result = strip_tags($str);
echo $result;
/**結果
Hello world
*/
複製代碼

 

strtolower
strtoupper
功能:轉換成大小寫加密

複製代碼
<?php
$str = "Hello World!";
$result = strtolower($str);
echo $result."<br>";

$result = strtoupper($str);
echo $result;
/**結果
hello world!
HELLO WORLD!
*/
複製代碼

 




trim
功能:去除首尾空格spa

複製代碼
<?php
$str = "  Hello World!  ";
$result = trim($str);
echo $str."<br>";
echo $result."<br>";
echo strlen($str)."<br>";
echo strlen($result);
/**結果
Hello World!
Hello World!
16
12
*/
複製代碼

 



str_ireplace
功能:替換code

複製代碼
<?php
$str = "zhang san";
$result = str_ireplace("zhang","li",$str);
echo $str."<br>";
echo $result;
/**結果
zhang san
li san
*/
複製代碼

 



str_repeat
功能:將一個字符串重複多遍htm

複製代碼
<?php
$str = "Hello jiqing!";
$result = str_repeat($str,4);
echo $str."<br>";
echo $result;
/**結果
Hello jiqing!
Hello jiqing!Hello jiqing!Hello jiqing!Hello jiqing!
*/
複製代碼

 



str_replace
功能:區分大小寫的替換blog

複製代碼
<?php
$str = "hello jiqing!";
$result1 = str_ireplace("Hello","Hi",$str); //不區分大小寫
$result2 = str_replace("Hello","Hi",$str);  //區分大小寫
echo $str."<br>";
echo $result1."<br>";
echo $result2."<br>";
/**結果
hello jiqing!
Hi jiqing!
hello jiqing!
*/
複製代碼

 


str_word_count
功能:返回字符串中單詞的個數ip

複製代碼
<?php
$str = "hello jiqing a!";
$result1 = str_word_count($str);    //返回個數
$result2 = str_word_count($str,1);  //返回數組
echo $str."<br>";
echo $result1."<br>";
print_r($result2);
/**結果
hello jiqing a!
3
Array ( [0] => hello [1] => jiqing [2] => a )
*/
複製代碼

 


strlen
功能:返回字符串長度md5

複製代碼
<?php
$str = "hello jiqing a!";
$result = strlen($str);
echo $result;
/**結果
15
*/
複製代碼

 


substr_count
功能:計算一個字符串在另外一個字符串中的個數

複製代碼
<?php
$str = "hello jiqing ,hello jim!";
$result = substr_count($str,"hello");
echo $result;
/**結果
2
*/
複製代碼

 



substr_replace
功能:從某個位置開始替換

複製代碼
<?php
$str = "hello jiqing ,hello jim!";
$result = substr_replace($str,"zhangsan",6);
echo $result."<br>";
$result = substr_replace($str,"zhangsan",6,6);//從某個位置替換,替換幾個字符串
echo $result;
/**結果
hello zhangsan
hello zhangsan ,hello jim!
*/
複製代碼

 



substr
功能:獲取子字符串

複製代碼
<?php
$str = "abcdef";
$result = substr($str,0,1); //從第0個開始,獲取1個
echo $result."<br>";
$result = substr($str,0,-1);//從第0個開始,獲取到除了最後一個的字符串
echo $result."<br>";
$result = substr($str,2,-1);//從第2個開始,獲取到除了最後一個的字符串
echo $result."<br>";
$result = substr($str,-3,-1);//從第-3個開始,獲取到除了最後一個的字符串
echo $result."<br>";
$result = substr($str,-3,1);//從第-3個開始,獲取到除了最後一個的字符串
echo $result."<br>";
/**結果
a
abcde
cde
de
d
*/
複製代碼

 implode
功能:將數組轉化爲字符串

複製代碼
<?php
$array = array("2013","6","3");
$date = implode("/",$array);
echo $date;
/**結果
2013/6/3
*/
複製代碼



md5
功能:對字符串進行md5加密

複製代碼
<?php
$str = "Hello world";
$result = md5($str);
echo $result;
/**結果
3e25960a79dbc69b674cd4ec67a72c62
*/
相關文章
相關標籤/搜索