Help for this page

Select Code to Download


  1. or download this
    <?php
    
    ...
        # Note that autovivification has not happened.
        print_r($other);
    }
    
  2. or download this
    #!/usr/bin/env perl
    
    ...
        # Note that autovivification has happened!
        print Dumper \@other;
    }
    
  3. or download this
    no autovivification;