Created
October 10, 2011 22:31
-
-
Save jlebensold/1276774 to your computer and use it in GitHub Desktop.
Zendcasts: PHAR out autoloading
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
namespace Zendcasts; | |
class Dates { | |
public static function next_week() | |
{ | |
$datetime = new \DateTime(); | |
$datetime->add(new \DateInterval('P7D')); | |
return $datetime->format('Y-m-d'); | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
require_once 'phar://Zendcasts.phar'; | |
$str = new Zendcasts\Strings(); | |
echo $str->reverseMe("hello world") . "\n"; | |
echo "hello \n Next week is " . Zendcasts\Dates::next_week() . "\n"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
$phar = new Phar('Zendcasts.phar'); | |
$phar->buildFromDirectory(dirname(__FILE__) . '/Zendcasts','/\.php$/'); | |
$phar->compressFiles( Phar::GZ); | |
$phar->stopBuffering(); | |
$phar->setStub($phar->createDefaultStub('stub.php')); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
namespace Zendcasts; | |
class Strings | |
{ | |
public function reverseMe($str) | |
{ | |
return implode('',array_reverse(str_split($str))); | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
function __autoload($name) { | |
require_once './' . str_replace('\\',DIRECTORY_SEPARATOR,$name) . '.php'; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment