Skip to content

Instantly share code, notes, and snippets.

@gavinanderegg
Created July 24, 2011 14:12
Show Gist options
  • Save gavinanderegg/1102657 to your computer and use it in GitHub Desktop.
Save gavinanderegg/1102657 to your computer and use it in GitHub Desktop.
Hopefully fixed in 5.4
<?php
class thing
{
function bar()
{
return array(1, 2, 3);
}
}
$t = new thing();
if (!empty($t->bar()))
{
print "Hi!\n";
}
// Fatal error: Can't use method return value in write context in [...]/test.php on line 15
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment