Skip to content

Instantly share code, notes, and snippets.

View yanzadmiral's full-sized avatar

Yayan C yanzadmiral

View GitHub Profile
@yanzadmiral
yanzadmiral / ascii.php
Created October 15, 2016 16:45 — forked from donatj/ascii.php
Damn Simple PHP Ascii Art Generator
#!/usr/bin/php -q
<?php
if(isset($argv[1]) && strlen($argv[1])) {
$file = $argv[1];
}else{
echo 'Please Specify a File';
exit(1);
}
<?php
class Observer {
/**
* Untuk singleton diperlukan satu property yang static
*
* @var array
* @access protected
*/