Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
このステートメントを使用してファイル フィールドが空かどうかを確認したところ、成功しませんでした。
私が試してみました :
if( $_files['f1'] ['size'] ===0 ){}
if (empty($_FILES['f1']['error'] === 0)){}
if( $_files['f1'] ['name'] ===0 ){}
注: 構文エラーはありません。
2- ファイル フィールド名は :f1
解決策は何ですか?
これを試して
if ($_FILES['f1']['name'] === '') { }
また
if ($_FILES["f1"]["error"] > 0) { }