App下载

demo_func_natsort 在线工具

demo_func_natsort 在线工具

<?php
$temp_files = array("temp15.txt","temp10.txt",<br>"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);
?>
运行结果