<?php function clean_string($str) ...
<?php function clean_string($str) ...
<?php switch($view) ...
PHP On Code seems inefficient. Sug...
by Alix Axel,
May 03, 2010 00:33
The switch() for debates is...
<?php
function getAge($birthdate) {
...
PHP On How to get age from given b...
by Alix Axel,
May 03, 2010 00:26
This computes the age in a ...
PHP On Better way to check whether...
by Wordpress Themes,
April 30, 2010 18:21
Genial dispatch and this fi...
<?php
function cache_function($buildCallback, array $args = array(), $timeoutSeconds = 3600){
// Set up the filename for the cache file
...
PHP On Post resending with parent ...
by Thomas Salvador,
April 25, 2010 19:50
hi,
i suggest to ignore the...
<?php /** * @property-read string $class_name ...
PHP On Base class for easy class p...
by SeanJA,
April 17, 2010 15:44
Personally I do it this way...
<?PHP // Requires PHP 5.1.0 at least; I won't do the check pragmatically though. ...
<?php
function array_to_csv($data, $delim = ",") {
return implode($delim,$data);
...
<?php
function clean_string($str) {
$str = trim(strtolower($str));
...
<?php
public static function LastId()
{
...
<?php
class Database {
...
PHP On My DB static class based ar...
by Gregor,
February 25, 2010 16:20
Nice job. Here is my very s...

Nice information, I really ...