You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

23 lines
279 B
PHP

<?php
/**
* Created by PhpStorm.
* User: yp-tc-7176
* Date: 17/7/16
* Time: 20:12
*/
abstract class StringUtils
{
static function isBlank($field)
{
if ($field == '') {
return false;
} else {
return true;
}
}
}