
<?php /* Online PHP Examples with Source Code website: http://4evertutorials.blogspot.in/ */ /** * IsEmpty * * @param mixed $value * @return boolean */ function IsEmpty($value) { if(strlen(trim(preg_replace('/\xc2\xa0/',' ',$value))) == 0) { return true; }else { return false; } } ?> <?php /* Online PHP Examples with Source Code...