[Skip To Content]


# The turd gets shinier

  1. 11:53 < carl> http://blog.felho.hu/what-is-new-in-php-53-part-2-late-static-binding.html - YUCK.
  2. 12:06 < Wlll> They should give up on PHP, really.
  3. 12:08 < Wlll> "What is new in PHP 5.3 - The turd gets shinier"

# The One Thing I Like About PHP

  1. <?
  2. class B {
  3. function hello() {
  4. echo "HAI\n";
  5. }
  6. }
  7. $a = "hello";
  8. B::$a();
  9. ?>