StringUtils.php 325 B

123456789101112131415161718192021222324252627
  1. <?php
  2. /**
  3. * Created by PhpStorm.
  4. * User: yp-tc-7176
  5. * Date: 17/7/16
  6. * Time: 20:12
  7. */
  8. namespace app\common\modules\yop\sdk\Util;
  9. abstract class StringUtils
  10. {
  11. static function isBlank($field)
  12. {
  13. if ($field == '') {
  14. return false;
  15. } else {
  16. return true;
  17. }
  18. }
  19. }