[PHP-DEV] [off] PHP: a fractal of bad design

2012-04-10 Thread Adir Kuhn
Hi folks, today I read this post, I think that some points are valid, follow the link for you guys http://me.veekun.com/blog/2012/04/09/php-a-fractal-of-bad-design/ Adir Kuhn ZCE - Zend Certified Engineer **PHP 5.3 #ZEND004035 PSMI - Professional Scrum Master I

[PHP-DEV] How to collaborate?

2011-09-08 Thread Adir Kuhn
review my code. Thanks, Adir Kuhn -- PHP Internals - PHP Runtime Development Mailing List To unsubscribe, visit: http://www.php.net/unsub.php

[PHP-DEV] c and php operations

2011-07-29 Thread Adir Kuhn
func(a, b); a *= a++; b *= ++b; printf("%d %d %d %d\n", a, b, c, func(a, b));} thats prints: 5 16 -1 21 then I made a similar php script: and for my surprise its prints: 6 16 -1 22 so, somebody know and can explain me wtf happened? Thanks! Adir Kuhn