Skip to content

Instantly share code, notes, and snippets.

@deshack
Created June 6, 2016 15:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save deshack/cde292bc1355b587705d336ba7781e9e to your computer and use it in GitHub Desktop.
Save deshack/cde292bc1355b587705d336ba7781e9e to your computer and use it in GitHub Desktop.
PHP5 Return Types
<?php
function getUser() {
return array();
}
var_dump(getUser());
// array(0) {
// }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment