示例#1
0
文件: Method.php 项目: mage2pro/core
 /**
  * @param string $value
  * @param int $stackLevel [optional]
  * @return void
  * @throws \Exception
  */
 public static function assertValueIsString($value, $stackLevel = 0)
 {
     self::validateValue(\Df\Zf\Validate\StringT::s(), $value, $stackLevel + 1);
 }
示例#2
0
/**
 * @param string $v
 * @return bool
 */
function df_check_string($v)
{
    return \Df\Zf\Validate\StringT::s()->isValid($v);
}