Bellow are Dynamic Output for E-ticket
{
charting: "CNP"
}
To - chart not prepared
{
charting: "CP"
}
To - chart prepared
How to change this output in PHP
Thanks
Bellow are Dynamic Output for E-ticket
{
charting: "CNP"
}
To - chart not prepared
{
charting: "CP"
}
To - chart prepared
How to change this output in PHP
Thanks
You can use json_decode() to get the data, change the data as you need, and use json_encode() to encode it again.
e.g
<?php
$json = '{
"charting": "CNP"
}';
$phpArray = json_decode($json, true);
if($phpArray['charting'] == 'CP'){
$phpArray['charting'] = 'chart prepared';
}else if($phpArray['charting'] == 'CNP'){
$phpArray['charting'] = 'chart not prepared';
}
echo json_encode($phpArray);
?>