淺談PHP源碼十六:關於array_count_values函數

來源:互聯網
上載者:User
這篇文章主要介紹了關於淺談PHP源碼十六:關於array_count_values函數 ,有著一定的參考價值,現在分享給大家,有需要的朋友可以參考一下

淺談PHP源碼十六:關於array_count_values函數

array_count_values

(PHP 4, PHP 5)
array_count_values — 統計數組中所有的值出現的次數
說明

array array_count_values ( array input )

array_count_values() 返回一個數組,該數組用 input 數組中的值作為鍵名,該值在 input 數組中出現的次數作為值。

來源程式說明:
在原始碼中的兩句注釋就說明了這個函數的實現

  /* Initialize return array */    array_init(return_value);     /* Go through input array and add values to the return array */

但是其中還有一些細節需要注意:

1、此函數只能識別字串和數字,所以程式中使用了類似於下面的語句

if (Z_TYPE_PP(entry) == IS_LONG) {} else if (Z_TYPE_PP(entry) == IS_STRING) {} else {            php_error_docref(NULL TSRMLS_CC, E_WARNING, "Can only count STRING and INTEGER values!");}

2、在遍曆過程中,首先判斷是否不存在,此判斷過程在針對字串和數字時也有不同,但最終都是針對hash table的操作

在代碼中針對zval的初始化使用的是宏zval *data; MAKE_STD_ZVAL(data);
跟蹤此宏的定義如下:

MAKE_STD_ZVAL(data);==> #define MAKE_STD_ZVAL(zv)                 \    zend.h 586行    ALLOC_ZVAL(zv); \    INIT_PZVAL(zv); ==> #define ALLOC_ZVAL(z)    \    ZEND_FAST_ALLOC(z, zval, ZVAL_CACHE_LIST)    zend_alloc.h 165行 ==> #define ZEND_FAST_ALLOC(p, type, fc_type)    \    (p) = (type *) emalloc(sizeof(type))                   zend_alloc.h  152行 ==> #define emalloc(size)                        _emalloc((size) ZEND_FILE_LINE_CC ZEND_FILE_LINE_EMPTY_CC)    zend_alloc.h 56行==> ZEND_API void *_emalloc(size_t size ZEND_FILE_LINE_DC ZEND_FILE_LINE_ORIG_DC)      zend_alloc.c 2288行 程式實現 ==>  #define INIT_PZVAL(z)        \                 zend.h 576行    (z)->refcount = 1;        \    (z)->is_ref = 0;

EOF

以上就是本文的全部內容,希望對大家的學習有所協助,更多相關內容請關注topic.alibabacloud.com!

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.