$length) { $string = substr($string, 0, $length); } } public static function createGuidSection($characters) { $return = ""; for($i=0; $i<$characters; $i++) { $return .= dechex(mt_rand(0,15)); } return $return; } }