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.
我有一个像 wk%2002_13 这样的文件名,当它进入 url 时,它会转换为 wk 02_13,然后文件未找到错误,如何在不更改文件名的情况下修复此错误?
查看urlencode函数:
<?php echo urlencode('wk%2002_13'); # yields 'wk%252002_13' ?>