Answers for "decode a nested JSON with php"

PHP
0

decode a nested JSON with php

foreach($json as $elem)  {
   echo( $elem['name']." - ".$elem['favourite']['colour'] );
   echo("<br/>");
}
Posted by: Guest on February-12-2021

Browse Popular Code Answers by Language