Blogger Information
Blog 21
fans 0
comment 0
visits 12343
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
0418作业——字符串计算,数组排序总结,字符串查询与替换———4时25分
许增颜
Original
960 people have browsed it

代码如下:

实例

<meta charset="utf-8">
<?php 
echo '<pre>';
$one =['id'=>40,'name'=>'Xzy','place'=>'php','age'=>30,5=>true];
$str = 'www.淘宝.Com';
$str1 = 'www.taobao.com';
// print_r($one);
// sort($one);				//sort正序且键名重置,忽略类型
// print_r($one,SORT_NUMERIC);//按照数值排序
// asort($one);			//asort正序且键名保留,按类型排序
// print_r($one,SORT_STRING);     //按照字符串排序     
// ksort($one);
// print_r($one);			//按照键名排序,键名保留
// 反转排序
// rsort($one);
// print_r($one); 			//rsort反转排序,键名重置,忽略类型
// arsort($one);				//arsort反转排序,键名保留,按照类型排序
// print_r($one);
// krsort($one);
// print_r($one);				//krsort按照键名反转排序
echo '<h3>字符串长度计算</h3>','<hr color="red">';
// echo strlen($str),'<br>';  		//计算字符串长度	
// echo mb_strlen($str),'<br>';	//计算字符串长度,用字符数表示
// echo strcmp($str,$str1)==0? 相等:不相等,'<br>';   //字符串比较
// echo strncmp($str,$str1, 11)==0? 相等:不相等,'<br>';		//字符串设定位置比较
// echo strncasecmp($str,$str1,11)==0? 相等:不相等,'<br>';		//两个字符串比较设定位置,且不区分大小写
// $pone = '18575285994';		//字符串
// $mark = '0123456789';		//集合
// echo strspn($pone,$mark)==11? 存在:不存在,'<br>';		//计算$pone中全部字符都存在指定$mark中,返回数字单位
// $uesr = 'www.php.cn.com.xu.zeng.yan';
// echo $uesr;
// print_r(str_split(($uesr),3));				//将字符串分割成以3个字符为一组的数组;
// print_r(explode('.',$uesr,7));				//将字符串使用 ‘ . ’号为分隔符,分为七组
echo '<h3>字符串查询与替换</h3>','<hr color="red">';
$wifi = 'zhoufenmian18813435890'; 
echo str_pad($wifi,'8'),'<br>';    //查询$wifi值中的8首次出现的位置
echo strstr($wifi,'mian'),'<br>';			//如果‘mian’是$wifi的子串,则返回字符串,否则放回false;
echo str_replace('zhoufenmian','mm',$wifi),'<br>';		//字符串替换;
echo substr_replace($wifi,'18022800569',11,11);			//字符串替换;

运行实例 »

点击 "运行实例" 按钮查看在线实例

  总结:

                                                                        《《《全部注释在代码中》》》

Correction status:qualified

Teacher's comments:
Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post