共用方式為


base64_encode_fromguid()

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

GUID 編碼為base64字串。

語法

base64_encode_fromguid(guid)

深入瞭解 語法慣例

參數

姓名 類型​​ 必要 描述
guid guid ✔️ 要編碼為base64字串的值。

傳回

傳回從 GUID 編碼的base64字串。

範例

print Quine = base64_encode_fromguid(toguid("ae3133f2-6e22-49ae-b06a-16e6a9b212eb"))  

輸出

Quine
8jMxriJurkmwahbmqbIS6w==

如果您嘗試將不是 GUID 的任何項目編碼如下,將會擲回錯誤:

print Empty = base64_encode_fromguid("abcd1231")