[Php function] -- array function -- array_chunk

Source: Internet
Author: User
: This article mainly introduces [php functions] -- array functions -- array_chunk. For more information about PHP tutorials, see. Array_chunk

  • Version: >=4.2
  • Note:
    array_chunk(array $input, int $size, [, bool $preserve_keys=false])
    This function is used to block arrays. This function can be used when processing data in a logarithm group in batches.
  • Parameters
    • Input
      The array to be processed.
    • Size
      Array block size
    • Preserve_keys
      Whether to retain the key of the original data. it is not retained by default.
  • Example
$ Input = array ("a" => "php", "B" => "c", "c" => "c ++ ", "d" => "python", "e" => "ruby"); $ output = array_chunk ($ input, 2 ); # output => Array ([0] => Array ([0] => php [1] => c) [1] => Array ([0] => c ++ [1] => python) [2] => Array ([0] => ruby )) $ output2 = array_chunk ($ input, 2, true); # output2 => Array ([0] => Array ([a] => php [B] => c) [1] => Array ([c] => c ++ [d] => python) [2] => Array ([e] => ruby )) # note that the keys in the sub-array still retain the keys in the original array

'). AddClass ('pre-numbering '). hide (); $ (this ). addClass ('Has-numbering '). parent (). append ($ numbering); for (I = 1; I <= lines; I ++) {$ numbering. append ($ ('
  • '). Text (I) ;}; $ numbering. fadeIn (1700) ;}) ;}; script

    The above introduces the [php function] -- array function -- array_chunk, including some content, and hopes to help those who are interested in the PHP Tutorial.

    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.