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.
可能重复: 变量名中的点
我有一个带有文件输入的 HTML 表单。该文件将保存为 name 属性中给出的名称,
前任:
<input type='file' name='myfile.jpg'>
然后 PHP 会将这个文件保存为myfile.jpg
myfile.jpg
问题是,提交表单时,files var 替换了点“。” 下划线“_”
我该如何解决这个问题?
这是一个有据可查的行为
变量名中的点和空格被转换为下划线。例如<input name="a.b" />变成 $_REQUEST["a_b"]。
<input name="a.b" />