LoginSignup
1
0

More than 5 years have passed since last update.

アップロードファイルのバリデーション【CakePHP】

Last updated at Posted at 2017-11-30

バリデーションルールを設定

'image' => [
 ['rule' => ['extension', ['jpg','jpeg','gif','png']],
  'message' => '画像ではありません。',
  'allowEmpty' => true],
 ['rule' => ['uploadedFile', ['maxSize' => '10MB']],
  'message' => '画像サイズは10MB以下で',
  'allowEmpty' => true]
]

1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0