Join the social network of Tech Nerds, increase skill rank, get work, manage projects...
 
  • array_diff_assoc() in PHP

    • 0
    • 0
    • 0
    • 0
    • 0
    • 0
    • 0
    • 0
    • 108
    Comment on it

    Hello Readers ,

    Suppose we have two three array it will search with all three arrays and return an array that contains the values from array 1 that are not present in rest of the array

    Example :

    <?php
    $a1=array("a"=>"red","b"=>"green","c"=>"blue","d"=>"yellow");
    $a2=array("a"=>"red","f"=>"green","g"=>"blue");
    $a3=array("h"=>"red","b"=>"green","g"=>"blue");
    
    $result=array_diff_assoc($a1,$a2,$a3);
    print_r($result);
    ?>
    

    Output :

     Array ( [c] => blue [d] => yellow ) 
    

 0 Comment(s)

Sign In
                           OR                           
                           OR                           
Register

Sign up using

                           OR                           
Forgot Password
Fill out the form below and instructions to reset your password will be emailed to you:
Reset Password
Fill out the form below and reset your password: