Skip to content

Instantly share code, notes, and snippets.

@pelagisk
Created August 8, 2012 23:05
Show Gist options
  • Select an option

  • Save pelagisk/3299594 to your computer and use it in GitHub Desktop.

Select an option

Save pelagisk/3299594 to your computer and use it in GitHub Desktop.
Exempel 2 PHP
<?php
/* definiera en array */
$test = array('key1' => 'hej', 42 => 'då');
/* skriver ut 'hej' */
echo $test['key1'];
/* skriver ut 'då' */
echo $test[42];
/* skriv ut alla nycklar till $test */
echo array_keys($test);
/* skriv ut en array med en (för människor) läsbar sträng */
print_r($test);
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment