<?php 
if (! defined('BASEPATH')) exit('No direct script access allowed');
function pass_generator($amount)
{
	$keyset  = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789";
	$randkey = "";
	for ($i=0; $i<$amount; $i++){
		$randkey .= substr($keyset, rand(0, strlen($keyset)-1), 1);
	}
	return $randkey;	
} 
?>

Comments

Bir Cevap Yazın

E-posta hesabınız yayınlanmayacak. Gerekli alanlar * ile işaretlenmişlerdir

Şu HTML etiketlerini ve özelliklerini kullanabilirsiniz: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong>