当前位置:Gxlcms > PHP教程 > PHP惯用功能

PHP惯用功能

时间:2021-07-01 10:21:17 帮助过:36人阅读

PHP常用功能

1)字符串

主要方法有:strops()、substr()、str_split()、explode()等,更多方法查看PHP官方手册;

';//字符串的截取$str1=substr($str,4);$str2=substr($str,4,2);echo $str1.'
';echo $str2.'
';//字符串的分割$result1=str_split($str);$result2=str_split($str,3);$result3=explode(' ',$str);print_r($result1);echo '
';print_r($result2);echo '
';print_r($result3);echo '
';//字符串的连接$num=500;$str3="$str
from Hanhan $num";echo $str3;



2)数组

array_push()——用来存储数组的值;

更多方法查看PHP官方手册

';echo $arr[2];echo '
';//数组的创建:用key-value方式创建$arr2=array();$arr2['h']='hello';$arr2['w']='world';print_r($arr2);echo '
';echo $arr2['h'];echo '
';//数组的初始化$arr3=array(0=>'jason',1=>'see','h'=>'hello','w'=>'world','name'=>'shydzc');echo $arr3['name'];echo '
';//数组的常用方法$arr4=array();for($i=0;$i<10;$i++){ array_push($arr4,'item '.$i);}print_r($arr4);




版权声明:本文为博主原创文章,未经博主允许不得转载。

人气教程排行