Here is an example of using foreach loop to generate JSON in PHP:
Suppose you have an array of objects (e.g. products) that you want to convert to JSON:
$products = array(
array("id" => 1, "name" => "Product 1", "price" => 10.99),
array("id" => 2, "name" => "Product 2", "price" => 15.99),
array("id" => 3, "name" => "Product 3", "price" => 9.99)
);
To convert this array to JSON using foreach loop, you can do the following:
$json = "[";
foreach ($products as $product) {
$json .= '{ "id": ' . $product["id"] . ', "name": "' . $product["name"] . '", "price": ' . $product["price"] . ' },';
}
$json = rtrim($json,","); // remove the last comma
$json .= "]";
echo $json;
This code will output the following JSON:
[
{ "id": 1, "name": "Product 1", "price": 10.99 },
{ "id": 2, "name": "Product 2", "price": 15.99 },
{ "id": 3, "name": "Product 3", "price": 9.99 }
]
Please start posting anonymously - your entry will be published after you log in or create a new account. This space is reserved only for answers. If you would like to engage in a discussion, please instead post a comment under the question or an answer that you would like to discuss
Asked: 2023-05-26 17:45:23 +0000
Seen: 1 times
Last updated: May 26
How can a HTTP header be inserted in WordPress?
How can data be stored in a data attribute and utilized through Ajax?
How can an array be passed using typo3 flexform xml and itemsProcConfig?
How to use Composer autoload in implementing PHP namespaces?
What is the difference between highlighting HTML code in a .php file in VSCode?
Does JSON encode fail to retrieve data from the database?
Why isn't the cell text appearing when using easytable and fpdf in PHP version 7.4?
Can the GS1 128 barcode decoder in PHP or Jquery be utilized?
How can Xdebug be used in conjunction with VSCode for Laravel on Sail and WSL2?