<?php
	function randomPassword($length = 6){
		$chars = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789-_';
...

PHP On Random password

by Gerry, August 16, 2008 16:49

Slight rework of Ted's code...

D33ae6c5f3c870d7f83ef7d581528ca2 Talk
<?php
	function cache_function($buildCallback, array $args = array(), $timeoutSeconds = 3600){
		// Set up the filename for the cache file 
...

PHP On Cache any PHP function

by Gerry, August 16, 2008 03:25 Star_fullStar_fullStar_full

Disagree with comment #1: t...

D33ae6c5f3c870d7f83ef7d581528ca2 Talk