recycledbeans / is-base64
Adds a quick and easy method for determining whether a string is base64-encoded.
Installs: 15 495
Dependents: 0
Suggesters: 0
Security: 0
Stars: 4
Watchers: 1
Forks: 0
Open Issues: 0
This package is auto-updated.
Last update: 2024-10-25 02:11:41 UTC
README
From time to time, I've found it necessary to validate whether a bit of text is already encoded in base64. Since PHP does not include an easy function to do this, I decided to write this. This package does one simple thing: it adds some nice helper functions to know whether a text string is base64-encoded or not.
Installation
You can easily install with composer:
composer require recycledbeans/is-base64
Usage
is_base64()
<?php $is_b64 = is_base64('I am not base64-encoded'); // returns false $is_b64 = is_base64('SSBhbSBiYXNlNjQtZW5jb2RlZAo='); // returns true
is_base64_encode()
Useful when you do not want to have to check whether something is encoded before encoding. Will ensure that the string is base64-encoded and encode it if the string was not previously.
$my_encoded_string = is_base64_encode($_REQUEST['could_be_base64_encoded_or_not']); // returns base64-encoded string
is_base64_decode()
Useful when you do not want to have to check whether something is encoded before decoding. Will return the string value whether the original string was already base64-encoded or not.
$my_encoded_string = is_base64_decode($_REQUEST['could_be_base64_encoded_or_not']); // returns decoded string
Examples
$my_encoded_string = $_REQUEST['should_be_encoded']; if (! is_base64($my_encoded_string)) { $my_encoded_string = base64_encode($my_encoded_string); }