mirror of
https://github.com/php/php-src.git
synced 2024-12-22 00:10:16 +08:00
33 lines
749 B
Plaintext
33 lines
749 B
Plaintext
|
--TEST--
|
||
|
Testing ftp_fget autoresume
|
||
|
--CREDITS--
|
||
|
Rodrigo Moyle <eu [at] rodrigorm [dot] com [dot] br>
|
||
|
#testfest PHPSP on 2009-06-20
|
||
|
--SKIPIF--
|
||
|
<?php
|
||
|
require 'skipif.inc';
|
||
|
?>
|
||
|
--FILE--
|
||
|
<?php
|
||
|
require 'server.inc';
|
||
|
|
||
|
$ftp = ftp_connect('127.0.0.1', $port);
|
||
|
ftp_login($ftp, 'user', 'pass');
|
||
|
if (!$ftp) die("Couldn't connect to the server");
|
||
|
|
||
|
$local_file = dirname(__FILE__) . DIRECTORY_SEPARATOR . "localfile.txt";
|
||
|
file_put_contents($local_file, 'ASCIIFoo');
|
||
|
$handle = fopen($local_file, 'a');
|
||
|
|
||
|
var_dump(ftp_fget($ftp, $handle, 'fgetresume.txt', FTP_ASCII, FTP_AUTORESUME));
|
||
|
var_dump(file_get_contents($local_file));
|
||
|
?>
|
||
|
--CLEAN--
|
||
|
<?php
|
||
|
@unlink(dirname(__FILE__) . DIRECTORY_SEPARATOR . "localfile.txt");
|
||
|
?>
|
||
|
--EXPECT--
|
||
|
bool(true)
|
||
|
string(12) "ASCIIFooBar
|
||
|
"
|