Exemplo n.º 1
0
function mosCompressID($ID)
{
    return Base64_encode(pack("H*", $ID));
}
Exemplo n.º 2
0
function adopt($text)
{
    return '=?UTF-8?B?' . Base64_encode($text) . '?=';
}
Exemplo n.º 3
0
 /**
  * encode string
  *
  * @param string $value
  */
 public static function myEncode($value)
 {
     return urlencode(Base64_encode(trim($value)));
 }