這篇文章主要介紹了php base64 編碼與解碼實例程式碼的相關資料,需要的朋友可以參考下
php base64 編碼與解碼詳解
#1.自訂規則方式編碼和解碼
#實例
public function test_changinttoStr () { $intvalue1 = 1232344234; $intStr = ''; $str = "Y 9 L F k g y 5 R o v i x I 1 a O f 8 U h d s 3 r 4 D M p l Q Z J X P q e b E 0 W S j B n 7 w V z m N 2 G c 6 T H C A K u t"; $seq = explode(" ", $str); $intvalue = $intvalue1; while ($intvalue >= 62) { # code... $intStr = ($seq[$intvalue % 62]).$intStr ; $intvalue = (int)($intvalue / 62); } $intStr = ($seq[$intvalue]).$intStr; echo($intStr); $keySeq= array_flip($seq); $length = strlen($intStr); $value = 0; for ($i = $length -1; $i >=0; $i--) { $t = $keySeq[$intStr[$i]]; $s = ($length - $i) - 1; $m = (pow(62, $s) * $t); $value += $m; } echo $value; }
php實作讀取與儲存base64編碼的圖片內容 以上是php base64 編碼與解碼實例詳解的詳細內容。更多資訊請關注PHP中文網其他相關文章! public function testArray(){
// $str['a'] = 'sdfsdf';
// $str['d'] = 'sdafsdf';
// $newStr = $this->modifyArray($str);
$value = gmp_strval(gmp_init('234234234234',10),62);
$newValue = gmp_strval(gmp_init($value,62),10);
}
以上就是本文的全部內容,希望對大家的學習有幫助。