Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Lucksi
GitHub Repository: Lucksi/Mr.Holmes
Path: blob/master/GUI/Actions/Decode.php
1071 views
1
<?php
2
/*ORIGINAL CREATOR: Luca Garofalo (Lucksi)
3
AUTHOR: Luca Garofalo (Lucksi)
4
Copyright 2022-2023 Lucksi <[email protected]>
5
License: GNU General Public License v3.0*/
6
7
function Decode($content){
8
$converted = base64_decode($content);
9
$String = utf8_encode($converted);
10
return $String;
11
}
12
?>
13