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.
我必须使用 soundmanager2 或任何其他基于 Flash 的 mp3 播放器流式传输位于 public_html 之外的一些 mp3 文件,但我无法使其工作。
您知道有关此主题的任何解决方法吗?
谢谢
您可以编写一个小 php 脚本,从文件中加载内容并发送它。如果您的意图是阻止用户复制声音,那么这种方式可能是不可能的。如果您不能将文件移动到 public_html,您可以创建一个符号链接或只是 php 脚本。
你可以在这里使用 readfile :
header('Content-Type: audio/mpeg'); header('Content-Disposition: attachment; filename="audio.mp3"'); readfile('../files/audio.mp3');