Answers for "convert simple string to json in php"

PHP
-1

how to make a json request in php

<?php
$jsonurl = "http://api.wipmania.com/json";
$json = file_get_contents($jsonurl);
var_dump(json_decode($json));
?>
Posted by: Guest on April-26-2020

Code answers related to "convert simple string to json in php"

Browse Popular Code Answers by Language