Answers for "encode /decode function in php"

PHP
0

url decode function in php

string urldecode( $input )
Posted by: Guest on January-26-2022
20

php json_decode

$personJSON = '{"name":"Johny Carson","title":"CTO"}';

$person = json_decode($personJSON);

echo $person->name; // Johny Carson
Posted by: Guest on July-01-2019

Browse Popular Code Answers by Language