php natsort內核函數(shù)淺析第1/2頁
更新時間:2009年08月10日 10:32:08 作者:
今天發(fā)現(xiàn)了php有個自然排序的函數(shù)----natsort,第一次聽說了原來還有一種叫做“自然排序”的算法,很好奇
官方手冊(http://us.php.net/manual/en/function.natsort.php)
復制代碼 代碼如下:
bool natsort ( array &$array )
This function implements a sort algorithm that orders alphanumeric strings in the way a human being would while maintaining key/value associations. This is described as a "natural ordering". An example of the difference between this algorithm and the regular computer string sorting algorithms (used in sort()) can be seen in the example below.
據官方手冊還可以得到這樣的結果:
img1.png img2.png img10.png img12.png
顯然這很適合對類似文件名的排序。從結果看這種自然算法應該是去掉頭和尾的非數(shù)字部分,然后對留下來的數(shù)字部分進行排序,究竟是不是,還是看一下php源碼吧。
復制代碼 代碼如下:
//從ext/standard/array.c抽取的相關代碼如下
static int php_array_natural_general_compare(const void *a, const void *b, int fold_case) /* {{{ */
{
Bucket *f, *s;
zval *fval, *sval;
zval first, second;
int result;
f = *((Bucket **) a);
s = *((Bucket **) b);
fval = *((zval **) f->pData);
sval = *((zval **) s->pData);
first = *fval;
second = *sval;
if (Z_TYPE_P(fval) != IS_STRING) {
zval_copy_ctor(&first);
convert_to_string(&first);
}
if (Z_TYPE_P(sval) != IS_STRING) {
zval_copy_ctor(&second);
convert_to_string(&second);
}
result = strnatcmp_ex(Z_STRVAL(first), Z_STRLEN(first), Z_STRVAL(second), Z_STRLEN(second), fold_case);
if (Z_TYPE_P(fval) != IS_STRING) {
zval_dtor(&first);
}
if (Z_TYPE_P(sval) != IS_STRING) {
zval_dtor(&second);
}
return result;
}
/* }}} */
static int php_array_natural_compare(const void *a, const void *b TSRMLS_DC) /* {{{ */
{
return php_array_natural_general_compare(a, b, 0);
}
/* }}} */
static void php_natsort(INTERNAL_FUNCTION_PARAMETERS, int fold_case) /* {{{ */
{
zval *array;
if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "a", &array) == FAILURE) {
return;
}
if (fold_case) {
if (zend_hash_sort(Z_ARRVAL_P(array), zend_qsort, php_array_natural_case_compare, 0 TSRMLS_CC) == FAILURE) {
return;
}
} else {
if (zend_hash_sort(Z_ARRVAL_P(array), zend_qsort, php_array_natural_compare, 0 TSRMLS_CC) == FAILURE) {
return;
}
}
RETURN_TRUE;
}
/* }}} */
/* {{{ proto void natsort(array &array_arg)
Sort an array using natural sort */
PHP_FUNCTION(natsort)
{
php_natsort(INTERNAL_FUNCTION_PARAM_PASSTHRU, 0);
}
/* }}} */
雖然是第一次查看php的內核代碼,不過憑借多年看代碼的經驗,還是很容易找到這個自然排序算法的核心就是函數(shù):strnatcmp_ex(位于ext/standard/strnatcmp.c文件中)。
您可能感興趣的文章:
- php in_array 函數(shù)使用說明與in_array需要注意的地方說明
- PHP數(shù)組的交集array_intersect(),array_intersect_assoc(),array_inter_key()函數(shù)的小問題
- php array_intersect比array_diff快(附詳細的使用說明)
- PHP內核介紹及擴展開發(fā)指南—基礎知識
- php數(shù)組函數(shù)序列之in_array() 查找數(shù)組值是否存在
- php數(shù)組函數(shù)序列之array_combine() - 數(shù)組合并函數(shù)使用說明
- php數(shù)組函數(shù)序列之in_array() - 查找數(shù)組中是否存在指定值
- php數(shù)組函數(shù)序列之array_intersect() 返回兩個或多個數(shù)組的交集數(shù)組
- 使用js判斷數(shù)組中是否包含某一元素(類似于php中的in_array())
- PHP內核探索:變量存儲與類型使用說明
- PHP內核探索:變量概述
- php內核解析:PHP中的哈希表
- 2個自定義的PHP in_array 函數(shù),解決大量數(shù)據判斷in_array的效率問題
- php數(shù)組查找函數(shù)in_array()、array_search()、array_key_exists()使用實例
- PHP函數(shù)in_array()使用詳解
- php提示Warning:mysql_fetch_array() expects的解決方法
- PHP內核探索:哈希表碰撞攻擊原理
- 深入理解PHP內核(一)
- 深入理解PHP內核(二)之SAPI探究
- 深入php內核之php in array
相關文章
ThinkPHP中公共函數(shù)路徑和配置項路徑的映射分析
這篇文章主要介紹了ThinkPHP中公共函數(shù)路徑和配置項路徑的映射,較為通俗的分析了ThinkPHP中公共函數(shù)路徑和配置項路徑的映射關系與對應修改位置,有助于更好的理解ThinkPHP底層代碼原理,需要的朋友可以參考下2014-11-11
php中實現(xiàn)xml與mysql數(shù)據相互轉換的方法
這篇文章主要介紹了php中實現(xiàn)xml與mysql數(shù)據相互轉換的方法,實例封裝了一個類文件,可實現(xiàn)XML與MySQL數(shù)據的相互轉換,具有一定的參考借鑒價值,需要的朋友可以參考下2014-12-12

