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.
是否可以将虚拟 HEX 文件写入 PHP 页面,然后在用户请求 php 页面时动态生成真实文件?
例如在 Perl 中,我使用__DATA__了一些 HEX 内容
__DATA__
是的。只需将您的文件转储为 HEX 形式,将其分配给变量,然后通过变量的内容并恢复“真实”字节并将其发送给客户端。或者,如果可能,使用heredoc。但这对于大于 50KB 的文件非常无效。