Skip to content

Instantly share code, notes, and snippets.

@wowo
Created February 9, 2012 22:18
Show Gist options
  • Save wowo/1783738 to your computer and use it in GitHub Desktop.
Save wowo/1783738 to your computer and use it in GitHub Desktop.
<?php
function dereference() {
$arr = ['php', '5.4', 'looks', 'nice'];
return $arr;
}
printf("%s - %s\n", dereference()[1], dereference()[3]);
// will echo:
// 5.4 - nice
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment