Esempio n. 1
0
 /**
  * Method to cache the regex needed to determine if unicode support is available
  *
  * @return bool
  */
 protected static function _determineUnicodeSupport()
 {
     self::$_unicodeSupportEnabled = @preg_match('/\\pL/u', 'a') ? true : false;
 }