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 编辑(写入一些数据)到位于 ftp 服务器上的 txt 文件。
我查看了这篇使用 php ftp 写入文件的帖子
但在这种情况下,我的服务器无法理解 CHMOD 0777。
就如此容易!
<?php $handle = fopen("ftp://user:password@example.com/somefile.txt", "w"); ?>
有效!