Help for this page

Select Code to Download


  1. or download this
    -foo => 'food',
    -bar => 'bard'
    
  2. or download this
    'foo', undef, 'bar', undef
        -or-
    'bar', undef, 'foo', undef
    
    (depending on the order the keys are returned)
    
  3. or download this
    -foo => 'food',
    foo  => 'fool',
    -bar => 'bard',
    bar  => 'barl'
    
  4. or download this
    'foo', 'fool', 'fool', 'bar', 'barl', 'barl'
        -or-
    ...
    ...
    
    (depending on the order the keys are returned)
    
  5. or download this
    'foo', 'food', 'bar', 'bard'
        -or-
    'bar', 'bard', 'foo', 'food'
    
    (depending on the order the keys are returned)