-1
私はSlack/commandsで遊んでいます。 与えられたjsonをこのように見せかける必要があります。php配列をjsonに変換する
{
"text" : "hello world",
"attachments": [{
"text" : " this is information"
}]
}
このようにしてこれを複製しようとしています。
$data = array(
"text" => "hello world",
"attachments" => array(
"text" => "this is information",
"author_name" => "masnad"
)
);
$this->output->set_content_type('application/json');
return $this->output->set_output(json_encode($data));
スラックがわかるように角括弧を使用できません。
要求されたJSONが間違っています。中かっこが必要です。 –
@RahulMeshram json_encodeを試しましたが、うまくいきませんでした。ちょうどそれに対して否定的な点はありません。 –
私はしませんでした。ハァッ。私は代わりにあなたの質問に私の複製を引っ込め!あなたはどうしたらいいですか?してください – rahulsm