嗨,如果文件大小超过特定大小,我试图限制文件上传,但我的问题是,如果文件大小超过最大大小,我没有得到关于 php 服务器中文件的任何信息,我在 HTML 中的代码是以下请帮助我为什么我没有得到信息。
<?php echo $form->create('Add', array('id'=>'addFile', 'enctype'=>'multipart/form-data', 'url'=>'/content/upload?path='.$contentItem['url_path']),array(
'inputDefaults' => array('label' => false))); ?>
<div class="_100 formText">
<label>Section : </label>
<input type="input" value="<?php echo (!empty($contentItem['display_text'])) ? $contentItem['display_text'] : $contentItem['parent_disp_txt'] ;?>" name="data[Add][section]" readonly="readonly"/>
</div>
<div class="clear" style="height: 5px;"></div>
<div class="_100 formText">
<label>File Name : </label>
<input type="input" value="" name="data[Add][file]" class="filePath"/>
</div>
<div class="clear" style="height: 5px;"></div>
<div class="_99 formText">
<label>File Description : </label>
<textarea rows="3" cols="" name="data[Add][description]" class="description" style="resize:none;"></textarea>
</div>
<div class="clear" style="height: 15px;"></div>
<div class="_99 formText">
<label>Select File to Upload: </label>
<input type="file" name="data[Add][upload]" class="filesToUpload" id="file"/>
</div>
<?php echo $html->tags['formend'];?>