base64_decode_toarray()
適用於:✅Microsoft網狀架構✅Azure 數據✅總管 Azure 監視器✅Microsoft Sentinel
將base64字串譯碼為長值陣列。
語法
base64_decode_toarray(
base64_string)
深入瞭解 語法慣例。
參數
姓名 | 類型 | 必要 | 描述 |
---|---|---|---|
base64_string | string |
✔️ | 要從base64譯碼為long值陣列的值。 |
傳回
傳回從base64字串譯碼之長值的陣列。
範例
print Quine=base64_decode_toarray("S3VzdG8=")
// 'K', 'u', 's', 't', 'o'
輸出
Quine |
---|
[75,117,115,116,111] |
相關內容
- 若要將base64字串譯碼為UTF-8字串,請參閱 base64_decode_tostring()
- 若要將字串編碼為base64字串,請參閱 base64_encode_tostring()