你好傢伙我是cakephp的新手。 我想在上傳文件之前驗證文件,我看到一些人詢問同樣的事情。但我不想要自定義功能。 這是我不想 validation on a input file in cakephp驗證文件大小/文件類型cakephp
的例子,下面是I D喜歡的代碼,但它不工作
型號:
class Career extends AppModel
{
public $validate = array(
'file' => array(
'checktype' => array(
'rule' => array('extension',array('pdf','doc','docx')),
'message' => 'Please supply a valid file type (PDF OR WORD)',
),
'checksize' =>array(
'rule' => array('fileSize', '<=', '1MB'),
'message' => 'File must be less than 1MB',
),
),
);
}
我也想補充一點,該文件不是強制性的/必須的,但是如果要上傳它,它必須是.pdf/.doc/.docx且小於1MB。
謝謝大家