예제 #1
0
function mosCompressID($ID)
{
    return Base64_encode(pack("H*", $ID));
}
예제 #2
0
파일: mail.php 프로젝트: agragregra/uniMail
function adopt($text)
{
    return '=?UTF-8?B?' . Base64_encode($text) . '?=';
}
예제 #3
0
 /**
  * encode string
  *
  * @param string $value
  */
 public static function myEncode($value)
 {
     return urlencode(Base64_encode(trim($value)));
 }