從多維數組資料產生JSON 字串
在PHP 中,可以使用json_encode() 函數將多維數組轉換為有效的JSON字串。以下是範例:
<?php // Assuming the following array $array = array( array( 'oV' => 'myfirstvalue', 'oT' => 'myfirsttext', ), array( 'oV' => 'mysecondvalue', 'oT' => 'mysecondtext', ), ); // Encode the array to JSON $json = json_encode($array); // Output the JSON string echo $json; ?>
提供的範例的輸出將是:
[{"oV":"myfirstvalue","oT":"myfirsttext"},{"oV":"mysecondvalue","oT":"mysecondtext"}]
驗證 JSON 字串是否有效非常重要。正確的 JSON 語法需要在物件屬性名稱和字串值兩邊加上雙引號。
以上是如何將多維 PHP 陣列轉換為 JSON 字串?的詳細內容。更多資訊請關注PHP中文網其他相關文章!