Installing Git on Window
http://msysgit.github.io/

#extradirty

No title available

@theartofmadeline
KIROKAZE
sheepfilms

祝日 / Permanent Vacation
he wasn't even looking at me and he found me
almost home
Cosimo Galluzzi
styofa doing anything
art blog(derogatory)
ojovivo
h
RMH

roma★
No title available
Lint Roller? I Barely Know Her
occasionally subtle
Stranger Things
noise dept.
seen from United States

seen from Taiwan

seen from Spain
seen from Lithuania

seen from France

seen from United States

seen from United States

seen from Singapore

seen from Türkiye

seen from South Africa
seen from France
seen from Germany

seen from Germany
seen from France
seen from South Korea
seen from Germany
seen from Germany

seen from Romania
seen from United States

seen from United States
@myphpnotes
Installing Git on Window
http://msysgit.github.io/
Autoloading & PSR-0 - spl_autoloading_register
http://phpmaster.com/autoloading-and-the-psr-0-standard/
Installing Composer on Window (openssl extension enable)
http://stackoverflow.com/questions/14062055/composer-warning-openssl-extension-is-missing-how-to-enable-in-wamp
PHP 5.5 Generator
PHP 5.5 Generator
function fibonacci(){ $a = 0; $b = 1; while(true) { $a = $a + $b; $b = $a - $b; yield $a; } }
$fib = fibonacci(); $fib->current(); $fib->next(); $fib->current();
$fib is now a generator object.
So we can generate number now, and the local variable in the function keep it current state.
Alternative, an old solution pre php 5.5 way of doing this is for loop.
Example:
http://net.tutsplus.com/tutorials/php/what-to-expect-from-php-5-5/
http://sheriframadan.com/2012/10/test-drive-php-5-5-a-sneak-peek/
http://geekmonkey.org/articles/39-php-5-5-generators