Skip to content

Instantly share code, notes, and snippets.

@PJZ9n
Created June 13, 2020 19:45
Show Gist options
  • Save PJZ9n/10624a6bc41821bf72b792a1fa050693 to your computer and use it in GitHub Desktop.
Save PJZ9n/10624a6bc41821bf72b792a1fa050693 to your computer and use it in GitHub Desktop.
formの間違い例
<?php
//動かない例
[
"content" => [
"type" => "input",
"text" => "入力してください",
],
];
//動く例
[
"content" => [
[
"type" => "input",
"text" => "入力してください",
],
],
];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment