$str='pof ho poff rg poffff '; echo base64_encode($str); echo base64_decode($str);
Why is the original string not exiting? When do you need to use the base64_encode function, and when with crypt?
$str='pof ho poff rg poffff '; echo base64_encode($str); echo base64_decode($str);
Why is the original string not exiting? When do you need to use the base64_encode function, and when with crypt?
Source: https://ru.stackoverflow.com/questions/129095/
All Articles