Posts Tagged ‘ PHP ’

Orms and Circular References

May 27, 2010
By SeanJA

In my spare time I have been working on an ORM… not one meant to be used in the real world (well… not yet anyway). I currently have hasOne and hasMany working like so: <?php   /** * @property int $id * @property string $type * @property int $car_id */ class wheelBoilerplate extends orm{...
Read more »

Tags: , , , , , ,
Posted in PHP, Programming | 1 Comment »

PHP Pop Quiz Hotshot

July 23, 2009
By SeanJA

Without running it, what does this do? function hmmm(){ $i = 'a'; $array = array(); while($i != 'z'){ $array[$i] = $i; $i++; } return $array; } Share and Enjoy:
Read more »

Tags: , , , ,
Posted in PHP, Programming | 4 Comments »