Skip to content

Instantly share code, notes, and snippets.

@jamiefdhurst
Created October 25, 2012 10:06
Show Gist options
  • Save jamiefdhurst/3951786 to your computer and use it in GitHub Desktop.
Save jamiefdhurst/3951786 to your computer and use it in GitHub Desktop.
PHP Gripe of the Day...
// This should not require two lines...
$class = $this->_get_row_object($row);
$row = new $class;
// Surely this should work? But no...
$class = new {$this->_get_row_object($row)};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment