PHP exactly determines if it is a directory array

Source: Internet
Author: User
PHP accurately determines if an array is indexed
function Is_assoc ($arr) {    return Array_keys ($arr)!== range (0, COUNT ($arr)-1);//Array_values ($arr)!== $arr} function Is_assoc2 ($array) {  return (BOOL) count (Array_filter (Array_keys ($array), ' is_string '));} $array = Array (0=> "1",1=> "3"); Var_dump ($array); Echo Is_assoc ($array)? ' Indexed array ': ' is not an indexed array '; Echo '
"; Echo is_assoc2 ($array)?" Indexed array ': ' is not an indexed array '; Echo '
"; $array = Array (" 0 "=" 1 "," 1 "=" 3 "); Var_dump ($array); Echo Is_assoc ($array)? ' Indexed array ': ' is not an indexed array '; Echo '
"; Echo is_assoc2 ($array)?" Indexed array ': ' is not an indexed array '; Echo '
"; $array = Array (" name "=" 1 "," Age "=" 3 "); Var_dump ($array); Echo Is_assoc ($array)? ' Indexed array ': ' is not an indexed array '; Echo '
"; Echo is_assoc2 ($array)?" Indexed array ': ' is not an indexed array ';

?

Array (size=2)  0 = string ' 1 ' (length=1)  1 = = String ' 3 ' (length=1) not an indexed array is not an indexed array (size=2)  0 = s Tring ' 1 ' (length=1)  1 = String ' 3 ' (length=1) not an indexed array is not an indexed array (size=2)  ' name ' = = String ' 1 ' (length=1) 
   ' age ' = = String ' 3 ' (length=1) index array of indexed arrays

?

  • Related Article

    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.