Рекурсивный акроним словосочетания «PHP: Hypertext Preprocessor»
Добро пожаловать на форум PHP программистов!
За последние 24 часа нас посетили 17200 программистов и 1834 робота. Сейчас ищут 1664 программиста ...
Net_FTP::size()
Вернуться к: Net_FTP
Net_FTP::size()
Net_FTP::size() – returns the size in bytes of a file.
Synopsis
require_once 'Net/FTP.php';
mixed Net_FTP::size ( string $file )
gives you the size of a file bytes.
Parameter
-
string $file - The file to check.
Return value
mixed - the size of the given file on success, otherwise PEAR::Error.
Throws
The returned PEAR_Error object in case of an error is unspecific. You can ignore the errornumber and errormessage, because only "Connection failed" will be returned if the connection fails.
Note
This function can not be called statically.
Example
Using size()
<?php
var_dump($test->size('/foo/bar'));
?>
Вернуться к: Net_FTP