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.
我的本地服务器上有一个包含不同数据的文本文件。我想要一个 php 文件来将文本文件的内容提取到我之前设计的 html 表单的文本框中?
B.txt ----> PHP-----> form.html
请你帮助我好吗?
使用file_get_contents获取文件的内容。
$file = file_get_contents("/path/to/file/B.txt");
然后你可以用它来填写你的表格。