parent root
PHP: sodium_bin2base64 - Manual

sodium_bin2base64

(PHP 7 >= 7.2.0)

sodium_bin2base64Description

Description

sodium_bin2base64 ( string $bin , int $id ) : string

Warning

This function is currently not documented; only its argument list is available.

Parameters

bin

id

Return Values

add a noteadd a note

User Contributed Notes 1 note

up
4
davidw at example dot com
5 months ago
bin: The data you wish to encode
id: The variant of encoding to use, which can be one of the following constants. You'll need to reuse this value when decoding with sodium_base642bin.

SODIUM_BASE64_VARIANT_ORIGINAL            = 1
SODIUM_BASE64_VARIANT_ORIGINAL_NO_PADDING = 3
SODIUM_BASE64_VARIANT_URLSAFE             = 5
SODIUM_BASE64_VARIANT_URLSAFE_NO_PADDING  = 7
To Top
parent root