在平常工做中經常須要處理一些字符串或者數組,今天有時間來整理一下php
<?php
//字符串截取
$str = 'Hello World!'
substr($str,0,5);//返回'Hello'
//中文字符串截取
$str = '你好,深圳';
$result = mb_substr($str,0,2);//返回你好
//查找字符串的首次出現
$emai = "123@163.com";
$domain = strstr($email,'@');//返回‘@163.com’
$domain = strstr($email, '@','true');//返回‘123’。
//查找字符串在另外一字符串中第一次出現的位置。
$emai = "123@163.com";
strpos($emai,'@');//返回‘3' //把字符串打散爲數組 $str = '你好,深圳'; $arr = explode(',',$str);//返回值爲array(2) { [0]=> string(6) "你好" [1]=> string(6) "深圳" //字符串長度 $str = "Hello world"; $str1 = strlen($str);//返回11 //把字符串中的首字符轉換爲大寫。 $str = "hello world"; $str1= ucfirst($str);//返回「Hello world」 //把字符串中的首字符轉換爲小寫。 $str = "Hello world"; $str1= lcfirst($str);//返回「hello world」 //把字符串中每一個單詞的首字符轉換爲大寫。 $str = "hello world"; $str1= ucwords($str);//返回「Hello World」 //反轉字符串 $str = "hello world"; $str1= strrev($str);//返回「dlrow olleh」 //替換字符串中的一些字符 $str = "hello world"; $str1= str_replace('world','lisa',$str);//返回「hello lisa」 //字符串轉換爲大寫 $str = "hello world"; $str1= strtoupper($str);//返回「HELLO WORLD」 //字符串轉換爲小寫 $str = "HELLO WORLD"; $str1= strtolower($str);//返回「hello world」 ?>複製代碼
//數組整合成字符串數組
$arr = ['aa','bb','cc'];
$str = implode(',',$arr);//輸出結果「aa,bb,cc」
//數組的key值
$arr = ['aa','bb','cc'];
$aa = array_keys($arr);//輸出結果array(3) { [0]=> int(0) [1]=> int(1) [2]=> int(2) }
//合併數組
$a1=array("a"=>"red","b"=>"green");
$a2=array("c"=>"blue","b"=>"yellow");
print_r(array_merge($a1,$a2));//返回array(4) { ["a"]=> string(5) "test1" [0]=> string(2) "bb" [1]=> string(2) "cc" [2]=> string(5) "test2" },注意當兩個數組鍵值相同時,最後的會覆蓋其餘元素複製代碼