PHP Snippet: Print an array
$mappings = array ('windows' => 'microsoft', 'ipod' => 'apple', 'corby' => 'samsum');
print_r($mappings);
output:
Array ( [windows] => microsoft [ipod] => apple [corby] => samsum )
Just another WordPress weblog
$mappings = array ('windows' => 'microsoft', 'ipod' => 'apple', 'corby' => 'samsum');
print_r($mappings);
output:
Array ( [windows] => microsoft [ipod] => apple [corby] => samsum )