JBZoo\Utils\Str::stripSpace PHP 메소드

stripSpace() 공개 정적인 메소드

Strip all witespaces from the given string.
public static stripSpace ( string $string ) : string
$string string The string to strip
리턴 string
    public static function stripSpace($string)
    {
        return preg_replace('/\\s+/', '', $string);
    }

Usage Example

예제 #1
0
파일: Filter.php 프로젝트: jbzoo/utils
 /**
  * Strip spaces
  *
  * @param $string
  * @return string
  */
 public static function stripSpace($string)
 {
     return Str::stripSpace($string);
 }
All Usage Examples Of JBZoo\Utils\Str::stripSpace