📄 field_edit_form.inc.php
字号:
<table cellpadding="2" cellspacing="1">
<tr>
<td>文本框长度</td>
<td><input type="text" name="setting[size]" value="<?=$size?>" size="5"></td>
</tr>
<tr>
<td>允许上传的文件大小</td>
<td><input type="text" name="setting[upload_maxsize]" value="<?=$upload_maxsize?>" size="5">KB 提示:1KB=1024Byte,1MB=1024KB *</td>
</tr>
<tr>
<td>允许上传的文件类型</td>
<td><input type="text" name="setting[upload_allowext]" value="<?=$upload_allowext?>" size="50"></td>
</tr>
<tr>
<td>是否保存文件大小</td>
<td><input type="radio" name="setting[issavefilesize]" value="1" <?=($issavefilesize ? 'checked' : '')?>/> 是 <input type="radio" name="setting[issavefilesize]" value="0" <?=($issavefilesize ? '' : 'checked')?>/> 否</td>
</tr>
<tr>
<td>文件下载方式</td>
<td><input type="radio" name="setting[downloadtype]" value="0" <?=($downloadtype == 0 ? 'checked' : '')?>/> 链接文件地址 <input type="radio" name="setting[downloadtype]" value="1" <?=($downloadtype == 1 ? 'checked' : '')?>/> 通过PHP读取</td>
</tr>
</table>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -