예제 #1
0
파일: Stringy.php 프로젝트: voku/stringy
 /**
  * Returns a reversed string. A multibyte version of strrev().
  *
  * @return Stringy Object with a reversed $str
  */
 public function reverse()
 {
     $reversed = UTF8::strrev($this->str);
     return static::create($reversed, $this->encoding);
 }