Skip to content

Instantly share code, notes, and snippets.

@lloc
Created October 1, 2011 15:53
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 lloc/1256232 to your computer and use it in GitHub Desktop.
Save lloc/1256232 to your computer and use it in GitHub Desktop.
Factory Method Using
<?php
/* gibt z.B. 'Am 05.03.2007 um 12:12 Uhr wurde die Datei geaendert.' aus. */
$obj = Factory::create (__FILE__);
print $obj->repr ();
/* gibt 'Es ist ein Fehler aufgetreten!' aus */
$obj = Factory::create ("nicht-existierende-datei");
print $obj->repr ();
?>
@lloc
Copy link
Author

lloc commented Oct 1, 2011

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment