欢迎访问服务器技术网-www.fuwuqijishu.com

PHP natsort() 函数

PHP fuwuqijishu 2年前 (2022-09-04) 30次浏览 0个评论 扫描二维码
文章目录[隐藏]

PHP natsort() 函数

完整的 PHP Array 参考手册

实例

对数组进行排序:

<?php
$temp_files = array(“temp15.txt”,”temp10.txt”,
“temp1.txt”,”temp22.txt”,”temp2.txt”);

sort($temp_files);
echo “Standard sorting: “;
print_r($temp_files);
echo “<br>”;

natsort($temp_files);
echo “Natural order: “;
print_r($temp_files);
?>


定义和用法

natsort() 函数用”自然排序”算法对数组进行排序。键值保留它们原始的键名。

在自然排序算法中,数字 2 小于 数字 10。在计算机排序算法中,10 小于 2,因为 “10” 中的第一个数字小于 2。


语法

natsort(array)

参数 描述
array 必需。规定要进行排序的数组。

技术细节

返回值: 如果成功则返回 TRUE,如果失败则返回 FALSE。
PHP 版本: 4+
更新日志: 自 PHP 5.2.10 起,当用 0 填充数字字符串时(例如 ‘00006’),将忽略 0。


完整的 PHP Array 参考手册

喜欢 (0)
发表我的评论
取消评论
表情 贴图 加粗 删除线 居中 斜体 签到

Hi,您需要填写昵称和邮箱!

  • 昵称 (必填)
  • 邮箱 (必填)
  • 网址

Warning: error_log(/www/wwwroot/fuwiqijishu/wp-content/plugins/spider-analyser/#log/log-2217.txt): failed to open stream: No such file or directory in /www/wwwroot/fuwiqijishu/wp-content/plugins/spider-analyser/spider.class.php on line 2900