コード例 #1
0
ファイル: String.php プロジェクト: Viacomino/sutra
 /**
  * Trims whitespaces or defined characters from the beginning of the string.
  *
  * @param string $charlist The characters to trim.
  *
  * @return String The string trimmed.
  */
 public function trimLeft($charlist = null)
 {
     return new static(static::$helper->trimLeft($this->string, $charlist));
 }