Archive for May, 2007
My head will roll on Wednesday afternoon when I go down to collect my 1600 x 600mm standing banner printout for this coming PC Show 2007.
Noelle really liked her idea of the products being portrayed inside a vending machine, so bo bian I came out with a really fake rendition of the vending machine using [...]
Filed under: Daily Life entries | Leave a Comment
PHP #3
05May07
Performance Issues
Depending on the scale of your application, there are some performances issues you might need to consider when using references.
In simple cases of copying one variable to another PHP’s internal reference counting feature prevents unneccessary memory usage.
E.g
$a = ‘the quick brown fox’;
$b = $a;
The above example, the value of $b would not take up [...]
Filed under: PHP bits | Leave a Comment