आप json_encode
का उपयोग कर सकते हैं समारोह।
- डीबी से डेटा प्राप्त करें और इसे एक सरणी में असाइन करें
- फिर
json_encode($result_array)
use का उपयोग करें . यह जेसन परिणाम उत्पन्न करेगा। यहां क्लिक करें file_put_contents
का उपयोग करें json परिणाम को अपनी .json फ़ाइल में सहेजने के लिए कार्य करें
निम्नलिखित एक उदाहरण कोड है,
$result = mysql_query(your sql here);
$data = array();
while ($row = mysql_fetch_assoc($result)) {
// Generate the output in desired format
$data = array(
'cols' => ....
'rows' => ....
'p' => ...
);
}
$json_data = json_encode($data);
file_put_contents('your_json_file.json', $json_data);