#code
3 posts tagged code. Clear filter
-
How to Calculate Age with PHP
Calculate age in PHP $yourbirthday = '1982-08-29'; $difference = datediff(datecreate(), datecreate($yourbirthday)); $age = $difference-format('%Y'); // 35 Short and sweet
-
How Beautiful is Ruby?
Working with Ruby and in particular Rails, it's easy to take the beauty inherent in the language for granted. I mean look at this code. If you read it aloud to yourself, it reads like an english...
-
Why are PHP5 Namespaces Defined Using a Backslash?
Why are PHP namespaces defined using a backslash? It looks ugly. Unless of course, there is a good reason for the "\"? Does this namespaced code run more efficiently on Windows? Since namespaces...