Created
June 13, 2020 19:45
-
-
Save PJZ9n/10624a6bc41821bf72b792a1fa050693 to your computer and use it in GitHub Desktop.
formの間違い例
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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