PHP Classes

File: examples/MergeAssocRecursive.php

Recommend this page to a friend!
  Classes of Christian Vigh   PHP Array Helpers   examples/MergeAssocRecursive.php   Download  
File: examples/MergeAssocRecursive.php
Role: Example script
Content type: text/plain
Description: Example script
Class: PHP Array Helpers
Perform several array manipulation operations
Author: By
Last change: Update of examples/MergeAssocRecursive.php
Date: 1 year ago
Size: 1,175 bytes
 

Contents

Class file image Download
<?php
   
/***********************************************************************************************************

        The following example demonstrates the use of the ArrayHelpers::MergeAssocRecursive function.

     ***********************************************************************************************************/
   
require ( '../ArrayHelpers.phpclass' ) ;

    if (
php_sapi_name ( ) != 'cli' )
        echo (
"<pre>" ) ;

   
$array_1 = [ 17 => 'value 17 version 1', 18 => [ 'a' => 'value a', 'b' => 'value b version 1' ] ] ;
   
$array_2 = [ 17 => 'value 17 version 2', 18 => [ 'b' => 'value b version 2', 'c' => 'value c' ] ] ;
   
$array_3 = [ 1 => 'value 1', 19 => 'value 19', 20 => 'value 20' ] ;

    echo
"***** Merging the following arrays :\n" ;
    echo
"array 1 : " ; print_r ( $array_1 ) ;
    echo
"array 2 : " ; print_r ( $array_2 ) ;
    echo
"array 3 : " ; print_r ( $array_3 ) ;
    echo
"***** Result of ArrayHelpers::MergeAssocRecursive :\n" ;
   
print_r ( ArrayHelpers::MergeAssocRecursive ( $array_1, $array_2, $array_3 ) ) ;
    echo
"***** Result of array_merge_recursive() :\n" ;
   
print_r ( array_merge_recursive ( $array_1, $array_2, $array_3 ) ) ;