色婷婷狠狠18禁久久YY,CHINESE性内射高清国产,国产女人18毛片水真多1,国产AV在线观看

phpbase64

林玟書2年前188瀏覽0評(píng)論

phpbase64?

1、base64_decode() 函數(shù)在PHP中是解碼的意思、對(duì)使用 MIME base64 編碼的數(shù)據(jù)進(jìn)行解碼。

使用base64_decode()函數(shù)對(duì)簡(jiǎn)單字符串進(jìn)行解碼。

$str = 'VGhpcyBpcyBhbiBlbmNvZGVkIHN0cmluZw==';

echo base64_decode($str);

?>

此示例將顯示:

This is an encoded string

2、與之相反,base64_encode(),使用 base64 對(duì) data 進(jìn)行編碼。

使用base64_encode()函數(shù)對(duì)簡(jiǎn)單字符串進(jìn)行編碼。

$str = 'This is an encoded string';

echo base64_encode($str);

?>

此示例將顯示:

VGhpcyBpcyBhbiBlbmNvZGVkIHN0cmluZw==