Skip to content

Instantly share code, notes, and snippets.

@Zetzumarshen
Last active May 18, 2016 23:46
Show Gist options
  • Save Zetzumarshen/f920c1034293b1abc4f42bc886395874 to your computer and use it in GitHub Desktop.
Save Zetzumarshen/f920c1034293b1abc4f42bc886395874 to your computer and use it in GitHub Desktop.
PHP Gotcha: Factory Pattern
class carFactory
{
public function createObject($carClass)
{
$file = $carClass . '.php';
require_once $file;
$obj = new $carClass; // magic
return $obj
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment