Blogger Information
Blog 34
fans 2
comment 2
visits 22718
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
数组的排序总结、字符串 20180421-14:33
AsNwds_MIS王的博客
Original
604 people have browsed it

实例

<?php
echo '<h3>数组排序总结</h3>';
$arr = ['id'=>1,'name'=>'php','sex'=>'male','age'=>35,2=>false];
echo '<pre>';
print_r($arr);
echo '<hr color="red">';
echo '<p>sort键名重置</p>';
//正序sort(),键名重置
//sort($arr,SORT_NUMERIC); //数值排序
//print_r($arr);
//sort($arr,SORT_STRING); //字符串排序
//print_r($arr);
//echo '<hr color="red">';
//echo '<p>asort键名保留</p>';
//asort(),键名保留
//asort($arr); //忽略类型
//print_r($arr); 
//asort($arr,SORT_NUMERIC);
//print_r($arr); 
//echo '<hr color="red">';
//echo '<p>ksort 键名正序排列</p>';
//ksort()
// ksort($arr);
// print_r($arr); 
// echo '<hr color="red">';
// echo '<p>rsort反转</p>';
// rsort($arr,SORT_NUMERIC);
// print_r($arr);
// rsort($arr,SORT_STRING);
// print_r($arr);

// echo '<hr color="red">';
// echo '<p>arsort倒序且键名保留</p>';
// arsort($arr,SORT_NUMERIC);
// print_r($arr);
// arsort($arr,SORT_STRING);
// print_r($arr);

// echo '<hr color="red">';
// echo '<p>krsort 键名反转排序</p>';
// krsort($arr,SORT_NUMERIC);
// print_r($arr);
// krsort($arr,SORT_STRING);
// print_r($arr);

echo '<hr color="red">';
echo '<p>usort用户自定义排序</p>';
$arr1 = [4,1,6,2,9];
function res($a,$b){
	return ($a<$b)?1:-1;  
}
usort($arr1,'res');
print_r($arr1);

运行实例 »

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

实例

<?php
echo '<h3>字符串长度计算</h3>';

$siteName='wo们';
$endcoding = mb_internal_encoding();
echo '内部字符编码集:',$endcoding,'<br>';
echo strlen($siteName),'<br>';
echo '<hr color="red">';
echo '<h3>字符串与数组之间的转换</h3>';
echo '<pre>';
$str = "上衣、裤子、鞋";
$res = explode("、",$str); //用、分割
print_r($res);
 
echo '<hr color="red">';
echo '<h3>字符串查找与替换</h3>';
$str = 'www.php.cn';
echo strpos($str,'p'),'<br>';// 从头查找首次出现的位置
echo strpos($str,'p',5),'<br>'; //从索引5开始查找

//str_replace(search:查找的目标, replace:替换值, subject:对象)
echo str_replace('www.', 'http://www.', $str),'<br>';
//substr_replace(string, replacement, start)
//在$str中,从第五个位置起的两个字符,用PPPPH替换
echo substr_replace($str, 'pppph', 5,2);

运行实例 »

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



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