共用方式為


base64_decode_toguid()

適用於:✅Microsoft網狀架構Azure 數據✅總管 Azure 監視器✅Microsoft Sentinel

將base64字串譯碼為 GUID

語法

base64_decode_toguid(base64_string)

深入瞭解 語法慣例

參數

姓名 類型​​ 必要 描述
base64_string string ✔️ 要從base64譯碼為 GUID 的值。

傳回

回從base64字串譯碼的 GUID

範例

print Quine = base64_decode_toguid("JpbpECu8dUy7Pv5gbeJXAA==")  

輸出

Quine
10e99626-bc2b-754c-bb3e-fe606de25700

如果您嘗試譯碼無效的base64字串,將會傳回 「null」 :

print Empty = base64_decode_toguid("abcd1231")

若要將 GUID 編碼為base64字串,請參閱 base64_encode_fromguid()