|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2001-07-07 00:21 UTC] jason@php.net
[2001-07-08 18:46 UTC] sniper@php.net
[2001-07-09 12:37 UTC] jason@php.net
[2001-07-17 01:52 UTC] jason@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Wed Nov 05 08:00:02 2025 UTC |
for example : $fp = fopen("http://www.php.net", "r"); ftp_fput( $ftp_stream, "remote", $fp, FTP_ASCII); doesn't work. But the following code-example : $fp = fopen("file.txt", "r"); ftp_fput( $ftp_stream, "remote", $fp, FTP_ASCII); works.