PHP Array Operation instance

Source: Internet
Author: User
This article mainly introduces the PHP array operation class, which involves php operations related to array deletion, conversion, grouping, sorting, and so on. It has some reference value. If you need it, you can refer

This article mainly introduces the PHP array operation class, which involves php operations related to array deletion, conversion, grouping, sorting, and so on. It has some reference value. If you need it, you can refer

This example describes the PHP array operation class. Share it with you for your reference. The details are as follows:

Class ArrayHelper {/*** Delete blank elements from the array (including elements with only blank characters) ** usage: * @ code php * $ arr = array ('', 'test', ''); * ArrayHelper: removeEmpty ($ arr); ** dump ($ arr ); * // In the output result, only 'test' * @ endcode ** @ param array $ array to be processed by arr * @ param boolean $ whether trim calls the trim function */static function removeEmpty (& $ arr, $ trim = TRUE) {foreach ($ arr as $ key => $ value) {if (is_array ($ value) {self :: removeEmpty ($ arr [$ key]);} else {$ value = trim ($ Value); if ($ value = '') {unset ($ arr [$ key]);} elseif ($ trim) {$ arr [$ key] = $ value ;}}}/*** returns all values of the specified key from a two-dimensional array ** usage: * @ code php * $ rows = array (* array ('id' => 1, 'value' => '1-1 '), * array ('id' => 2, 'value' => '2-1'), *); * $ values = ArrayHelper: getCols ($ rows, 'value'); ** dump ($ values); * // The output result is * // array (* // '1-1 ', * // '2-1', * //) * @ endcode ** @ param array $ arr data source * @ param string $ col the key to be queried ** @ ret Urn array contains the array of all values of the specified key */static function getCols ($ arr, $ col) {$ ret = array (); foreach ($ arr as $ row) {if (isset ($ row [$ col]) {$ ret [] = $ row [$ col] ;}} return $ ret ;} /*** convert a two-dimensional array to HashMap and return the result. ** usage 1: * @ code php * $ rows = array (* array ('id' => 1, 'value' => '1-1 '), * array ('id' => 2, 'value' => '2-1'), *); * $ hashmap = ArrayHelper: toHashmap ($ rows, 'id', 'value'); ** dump ($ hashmap); * // The output result is * // array (* // 1 => '1-1', * // 2 => '2-1', * //) * @ endcode ** if the $ valueField parameter is omitted, each item in the conversion result is an array containing all the data of the item. ** Usage 2: * @ code php * $ rows = array (* array ('id' => 1, 'value' => '1-1 '), * array ('id' => 2, 'value' => '2-1'), *); * $ hashmap = ArrayHelper: toHashmap ($ rows, 'id'); ** dump ($ hashmap); * // The output result is * // array (* // 1 => array ('id' => 1, 'value' => '1-1'), * // 2 => array ('id' => 2, 'value' => '2-1 '), * //) * @ endcode ** @ param array $ arr data source * @ param string $ key-value conversion of keyField * @ param string $ valueField * * @ Return array the converted HashMap style array */static function toHashmap ($ arr, $ keyField, $ valueField = NULL) {$ ret = array (); if ($ valueField) {foreach ($ arr as $ row) {$ ret [$ row [$ keyField] = $ row [$ valueField] ;}} else {foreach ($ arr as $ row) {$ ret [$ row [$ keyField] = $ row;} return $ ret;}/*** groups a two-dimensional array by the value of the specified field ** usage: * @ endcode ** @ param array $ arr data source * @ param string $ key field used as the Group's key name ** @ return array result */stat Ic function groupBy ($ arr, $ keyField) {$ ret = array (); foreach ($ arr as $ row) {$ key = $ row [$ keyField]; $ ret [$ key] [] = $ row;} return $ ret ;} /*** convert a two-dimensional array of a plane to a tree structure based on the specified field *** to obtain the subtree with any node as the root, you can use the $ refs parameter: * @ code php * $ refs = null; * $ tree = ArrayHelper: tree ($ rows, 'id', 'parent', 'nodes ', $ refs ); ** // The node whose output id is 3 and all its subnodes ** $ id = 3; * dump ($ refs [$ id]); * @ endcode ** @ param array $ arr data source * @ param string $ keyN OdeId node ID field name * @ param string $ keyParentId node parent ID field name * @ param string $ keyChildrens saves the field name of the subnode * @ param boolean $ whether refs contains node references in the returned results * * return array */static function toTree ($ arr, $ keyNodeId, $ keyParentId = 'parent _ id', $ keyChildrens = 'childrens', & $ refs = NULL) {$ refs = array (); foreach ($ arr as $ offset => $ row) {$ arr [$ offset] [$ keyChildrens] = array (); $ refs [$ row [$ keyNodeId] = & $ arr [$ offset];} $ t Ree = array (); foreach ($ arr as $ offset => $ row) {$ parentId = $ row [$ keyParentId]; if ($ parentId) {if (! Isset ($ refs [$ parentId]) {$ tree [] = & $ arr [$ offset]; continue ;}$ parent = & $ refs [$ parentId]; $ parent [$ keyChildrens] [] = & $ arr [$ offset];} else {$ tree [] = & $ arr [$ offset] ;}} return $ tree ;} /*** split the tree array into a flat array ** this method is the inverse operation of the tree () method. ** @ Param array $ tree-like array * @ param string $ keyChildrens contains the key name of the subnode ** @ return array expanded array */static function treeToArray ($ tree, $ keyChildrens = 'childrens') {$ ret = array (); if (isset ($ tree [$ keyChildrens]) & is_array ($ tree [$ keyChildrens]) {foreach ($ tree [$ keyChildrens] as $ child) {$ ret = array_merge ($ ret, self: treeToArray ($ child, $ keyChildrens ));} unset ($ node [$ keyChildrens]); $ ret [] = $ tree;} else {$ ret [] = $ tree;} return $ ret ;} /*** sort arrays by specified keys ** @ endcode ** @ param array $ array * @ param string $ key for sorting by keyname * @ param int $ dir sorting direction ** @ return array */static function sortByCol ($ array, $ keyname, $ dir = SORT_ASC) {return self: sortByMultiCols ($ array, array ($ keyname => $ dir ));} /*** sort a two-dimensional array BY multiple columns, similar to order by ** in SQL statements: * @ code php * $ rows = ArrayHelper :: sortByMultiCols ($ rows, array (* 'parent' => SORT_ASC, * 'name' => SORT_DESC ,*)); * @ endcode ** @ param array $ array to be sorted * @ param array $ args sort key ** @ return array sorted array */static function sortByMultiCols ($ rowset, $ args) {$ sortArray = array (); $ sortRule = ''; foreach ($ args as $ sortField => $ sortDir) {foreach ($ rowset as $ offset => $ row) {$ sortArray [$ sortField] [$ offset] = $ row [$ sortField];} $ sortRule. = '$ sortArray [\''. $ sortField. '\'], '. $ sortDir. ',';} if (empty ($ sortArray) | empty ($ sortRule) {return $ rowset;} eval ('array _ multisort ('. $ sortRule. '$ rowset);'); return $ rowset ;}}

I hope this article will help you with php programming.

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

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.