コード例 #1
0
ファイル: mambofunc.php プロジェクト: jwest00724/mambo
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)));
 }