Skip to content

Instantly share code, notes, and snippets.

@astorm
Created August 31, 2018 12:58
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 astorm/4c9736a8ddc44c546af8a214b523a899 to your computer and use it in GitHub Desktop.
Save astorm/4c9736a8ddc44c546af8a214b523a899 to your computer and use it in GitHub Desktop.
two-return.php
<?php
define('nil', NULL);
function foo() {
return ["This is not go", nil];
}
list($value, $err) = foo();
var_dump($value, $err);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment