mirror of
https://github.com/php/php-src.git
synced 2025-08-16 05:58:45 +02:00

For rationale, see #6787 Extensions migrated in part 3: * ftp * gmp * iconv * opcache * shmop
25 lines
406 B
PHP
25 lines
406 B
PHP
--TEST--
|
|
Verify php can handle filesizes >32bit
|
|
--EXTENSIONS--
|
|
ftp
|
|
pcntl
|
|
--SKIPIF--
|
|
<?php
|
|
if (2147483647 == PHP_INT_MAX) {
|
|
die('skip 64-bit only');
|
|
}
|
|
?>
|
|
--FILE--
|
|
<?php
|
|
require 'server.inc';
|
|
|
|
$ftp = ftp_connect('127.0.0.1', $port);
|
|
if (!$ftp) die("Couldn't connect to the server");
|
|
|
|
ftp_login($ftp, 'user', 'pass');
|
|
var_dump(ftp_size($ftp, 'largefile'));
|
|
|
|
ftp_close($ftp);
|
|
?>
|
|
--EXPECT--
|
|
int(5368709120)
|