私がしたいことは次のとおりです:
- PHPのテキスト領域からの入力としてJSONを取る
- この入力を使用してJSONに変換し、php curlに渡してリクエストを送信します。
this m get of api from php from this json string want to pass to json to json but it not Convert to array
echo $str='{
action : "create",
record: {
type: "n$product",
fields: {
n$name: "Bread",
n$price: 2.11
},
namespaces: { "my.demo": "n" }
}
}';
$json = json_decode($str, true);
上記のコードは配列を返しません。
then it is not giving
何を与えていませんか?textareaからJSON形式の文字列を取得し、それをJSONに変換しますか?