예제 #1
0
파일: Stringy.php 프로젝트: voku/stringy
 /**
  * Returns true if the string is base64 encoded, false otherwise.
  *
  * @return bool Whether or not $str is base64 encoded
  */
 public function isBase64()
 {
     return UTF8::is_base64($this->str);
 }