stripSpace() public static method

Strip all witespaces from the given string.
public static stripSpace ( string $string ) : string
$string string The string to strip
return string
示例#1
0
文件: Filter.php 项目: jbzoo/utils
 /**
  * Strip spaces
  *
  * @param $string
  * @return string
  */
 public static function stripSpace($string)
 {
     return Str::stripSpace($string);
 }
示例#2
0
 public function testStrip()
 {
     $input = ' The quick brown fox jumps over the lazy dog ';
     $expect = 'Thequickbrownfoxjumpsoverthelazydog';
     is($expect, Str::stripSpace($input));
 }