次の方法で共有


base64_decode_toarray()

適用対象: ✅Microsoft FabricAzure データ エクスプローラーAzure MonitorMicrosoft Sentinel

base64 文字列を long 値の配列にデコードします。

構文

base64_decode_toarray(base64_string)

構文規則について詳しく知る。

パラメーター

件名 タイプ Required 説明
base64_string string ✔️ base64 から長い値の配列にデコードする値。

返品

Base64 文字列からデコードされた long 型の値の配列を返します。

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()」を参照してください