Archive for the PHP category
« Previous Next »
Friday, August 24th, 2007
PHP offers a nifty thing called “silent type conversion” which allows data of different types to be easily compared with data of different types. This is cool because I can say that the integer 1 and the boolean true can be evaluated to be the same thing. This becomes interesting when the concept of “emptiness” [...]
Posted in PHP | Comments Off
Wednesday, August 22nd, 2007
I will be giving a talk on Flex and PHP development for my PHP user group this Saturday. If anyone is interested, please feel free to show up. This talk will be a very light one with the goal of providing a solid overview of the framework and how to build applications. And of course, [...]
Posted in News, PHP, Personal Life | Comments Off
Wednesday, August 1st, 2007
If you’re in the area, come out to DeVry University and see me present at the next Central Florida PHP meeting. I’ll be giving a talk on web services in PHP 5 called “Creating and Consuming Web Services in PHP 5“. The talk will begin at 3:00 pm on Saturday, August 4 and will be [...]
Posted in PHP | 1 Comment
Thursday, June 21st, 2007
<?php
ini_set(’display_errors’, ‘true’);
interface God {
public function bless(Human $who);
public function heal(Human $who);
public function save(Human $who);
}
class Human {
public $name;
public $health = 0;
public $abundance = 0;
public $saved = [...]
Posted in Code, Humor, PHP | Comments Off
« Previous Next »