I have this code:
$JSONData = json_decode("[\"tes\", \"dfds\", \"array\"]");
print_r("Data = " . $JSONData);
It outputs:
Data = Array
How do i print the array? Like:
array(4) {
  [0]=>
  string(3) "tes"
  [1]=>
  string(4) "dfds"
  [2]=>
  string(5) "array"
}
 
     
    