????JFIF??x?x????'
| Server IP : 79.136.114.73 / Your IP : 216.73.216.191 Web Server : Apache/2.4.7 (Ubuntu) PHP/5.5.9-1ubuntu4.29 OpenSSL/1.0.1f System : Linux b8009 3.13.0-170-generic #220-Ubuntu SMP Thu May 9 12:40:49 UTC 2019 x86_64 User : www-data ( 33) PHP Version : 5.5.9-1ubuntu4.29 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority, MySQL : ON | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /proc/self/root/home/b8009/php-5.6.22/ext/standard/tests/file/ |
Upload File : |
--TEST--
Test ftruncate() function : usage variations - truncate file to current size
--SKIPIF--
<?php
if (substr(PHP_OS, 0, 3) != 'WIN') {
die('skip.. only valid for Windows');
}
?>
--FILE--
<?php
/*
Prototype: bool ftruncate ( resource $handle, int $size );
Description: Truncates a file to a given length
*/
// include common file related test functions
include ("file.inc");
echo "*** Testing ftruncate() : usage variations ***\n";
/* test ftruncate with file opened in different modes */
$file_modes = array("r", "rb", "rt", "r+", "r+b", "r+t",
"w", "wb", "wt", "w+", "w+b", "w+t",
"x", "xb", "xt", "x+", "x+b", "x+t",
"a", "ab", "at", "a+", "a+b", "a+t");
$file_content_types = array("numeric","text_with_new_line");
foreach($file_content_types as $file_content_type) {
echo "\n-- Testing ftruncate() with file having data of type ". $file_content_type ." --\n";
for($mode_counter = 0; $mode_counter < count($file_modes); $mode_counter++) {
echo "-- Testing ftruncate() with file opening using $file_modes[$mode_counter] mode --\n";
// create 1 file with some contents
$filename = dirname(__FILE__)."/ftruncate_variation2.tmp";
if( strstr($file_modes[$mode_counter], "x") || strstr($file_modes[$mode_counter], "w") ) {
// fopen the file using the $file_modes
$file_handle = fopen($filename, $file_modes[$mode_counter]);
fill_file($file_handle, $file_content_type, 1024);
} else {
create_files ( dirname(__FILE__), 1, $file_content_type, 0755, 1, "w", "ftruncate_variation", 2);
// fopen the file using the $file_modes
$file_handle = fopen($filename, $file_modes[$mode_counter]);
}
if (!$file_handle) {
echo "Error: failed to open file $filename!\n";
exit();
}
rewind($file_handle); // file pointer to 0
echo "-- Testing ftruncate(): truncate file to size = current size --\n";
/* truncate the file to its current filesize, size should not change*/
$new_size = filesize($filename);
var_dump( filesize($filename) ); // current filesize
var_dump( ftell($file_handle) );
var_dump( ftruncate($file_handle, $new_size) ); // truncate it
var_dump( ftell($file_handle) );
var_dump( feof($file_handle) );
fclose($file_handle);
clearstatcache(); // clear previous size value in cache
var_dump( filesize($filename) ); // new file size, should be same as before truncating
//delete all files created
delete_file($filename);
}//end of inner for loop
}//end of outer foreach loop
echo "Done\n";
?>
--EXPECTF--
*** Testing ftruncate() : usage variations ***
-- Testing ftruncate() with file having data of type numeric --
-- Testing ftruncate() with file opening using r mode --
-- Testing ftruncate(): truncate file to size = current size --
int(1024)
int(0)
bool(true)
int(0)
bool(false)
int(1024)
-- Testing ftruncate() with file opening using rb mode --
-- Testing ftruncate(): truncate file to size = current size --
int(1024)
int(0)
bool(true)
int(0)
bool(false)
int(1024)
-- Testing ftruncate() with file opening using rt mode --
-- Testing ftruncate(): truncate file to size = current size --
int(1024)
int(0)
bool(true)
int(0)
bool(false)
int(1024)
-- Testing ftruncate() with file opening using r+ mode --
-- Testing ftruncate(): truncate file to size = current size --
int(1024)
int(0)
bool(true)
int(0)
bool(false)
int(1024)
-- Testing ftruncate() with file opening using r+b mode --
-- Testing ftruncate(): truncate file to size = current size --
int(1024)
int(0)
bool(true)
int(0)
bool(false)
int(1024)
-- Testing ftruncate() with file opening using r+t mode --
-- Testing ftruncate(): truncate file to size = current size --
int(1024)
int(0)
bool(true)
int(0)
bool(false)
int(1024)
-- Testing ftruncate() with file opening using w mode --
-- Testing ftruncate(): truncate file to size = current size --
int(1024)
int(0)
bool(true)
int(0)
bool(false)
int(1024)
-- Testing ftruncate() with file opening using wb mode --
-- Testing ftruncate(): truncate file to size = current size --
int(1024)
int(0)
bool(true)
int(0)
bool(false)
int(1024)
-- Testing ftruncate() with file opening using wt mode --
-- Testing ftruncate(): truncate file to size = current size --
int(1024)
int(0)
bool(true)
int(0)
bool(false)
int(1024)
-- Testing ftruncate() with file opening using w+ mode --
-- Testing ftruncate(): truncate file to size = current size --
int(1024)
int(0)
bool(true)
int(0)
bool(false)
int(1024)
-- Testing ftruncate() with file opening using w+b mode --
-- Testing ftruncate(): truncate file to size = current size --
int(1024)
int(0)
bool(true)
int(0)
bool(false)
int(1024)
-- Testing ftruncate() with file opening using w+t mode --
-- Testing ftruncate(): truncate file to size = current size --
int(1024)
int(0)
bool(true)
int(0)
bool(false)
int(1024)
-- Testing ftruncate() with file opening using x mode --
-- Testing ftruncate(): truncate file to size = current size --
int(1024)
int(0)
bool(true)
int(0)
bool(false)
int(1024)
-- Testing ftruncate() with file opening using xb mode --
-- Testing ftruncate(): truncate file to size = current size --
int(1024)
int(0)
bool(true)
int(0)
bool(false)
int(1024)
-- Testing ftruncate() with file opening using xt mode --
-- Testing ftruncate(): truncate file to size = current size --
int(1024)
int(0)
bool(true)
int(0)
bool(false)
int(1024)
-- Testing ftruncate() with file opening using x+ mode --
-- Testing ftruncate(): truncate file to size = current size --
int(1024)
int(0)
bool(true)
int(0)
bool(false)
int(1024)
-- Testing ftruncate() with file opening using x+b mode --
-- Testing ftruncate(): truncate file to size = current size --
int(1024)
int(0)
bool(true)
int(0)
bool(false)
int(1024)
-- Testing ftruncate() with file opening using x+t mode --
-- Testing ftruncate(): truncate file to size = current size --
int(1024)
int(0)
bool(true)
int(0)
bool(false)
int(1024)
-- Testing ftruncate() with file opening using a mode --
-- Testing ftruncate(): truncate file to size = current size --
int(1024)
int(0)
bool(true)
int(0)
bool(false)
int(1024)
-- Testing ftruncate() with file opening using ab mode --
-- Testing ftruncate(): truncate file to size = current size --
int(1024)
int(0)
bool(true)
int(0)
bool(false)
int(1024)
-- Testing ftruncate() with file opening using at mode --
-- Testing ftruncate(): truncate file to size = current size --
int(1024)
int(0)
bool(true)
int(0)
bool(false)
int(1024)
-- Testing ftruncate() with file opening using a+ mode --
-- Testing ftruncate(): truncate file to size = current size --
int(1024)
int(0)
bool(true)
int(0)
bool(false)
int(1024)
-- Testing ftruncate() with file opening using a+b mode --
-- Testing ftruncate(): truncate file to size = current size --
int(1024)
int(0)
bool(true)
int(0)
bool(false)
int(1024)
-- Testing ftruncate() with file opening using a+t mode --
-- Testing ftruncate(): truncate file to size = current size --
int(1024)
int(0)
bool(true)
int(0)
bool(false)
int(1024)
-- Testing ftruncate() with file having data of type text_with_new_line --
-- Testing ftruncate() with file opening using r mode --
-- Testing ftruncate(): truncate file to size = current size --
int(1024)
int(0)
bool(true)
int(0)
bool(false)
int(1024)
-- Testing ftruncate() with file opening using rb mode --
-- Testing ftruncate(): truncate file to size = current size --
int(1024)
int(0)
bool(true)
int(0)
bool(false)
int(1024)
-- Testing ftruncate() with file opening using rt mode --
-- Testing ftruncate(): truncate file to size = current size --
int(1024)
int(0)
bool(true)
int(0)
bool(false)
int(1024)
-- Testing ftruncate() with file opening using r+ mode --
-- Testing ftruncate(): truncate file to size = current size --
int(1024)
int(0)
bool(true)
int(0)
bool(false)
int(1024)
-- Testing ftruncate() with file opening using r+b mode --
-- Testing ftruncate(): truncate file to size = current size --
int(1024)
int(0)
bool(true)
int(0)
bool(false)
int(1024)
-- Testing ftruncate() with file opening using r+t mode --
-- Testing ftruncate(): truncate file to size = current size --
int(1024)
int(0)
bool(true)
int(0)
bool(false)
int(1024)
-- Testing ftruncate() with file opening using w mode --
-- Testing ftruncate(): truncate file to size = current size --
int(1024)
int(0)
bool(true)
int(0)
bool(false)
int(1024)
-- Testing ftruncate() with file opening using wb mode --
-- Testing ftruncate(): truncate file to size = current size --
int(1024)
int(0)
bool(true)
int(0)
bool(false)
int(1024)
-- Testing ftruncate() with file opening using wt mode --
-- Testing ftruncate(): truncate file to size = current size --
int(1137)
int(0)
bool(true)
int(0)
bool(false)
int(1137)
-- Testing ftruncate() with file opening using w+ mode --
-- Testing ftruncate(): truncate file to size = current size --
int(1024)
int(0)
bool(true)
int(0)
bool(false)
int(1024)
-- Testing ftruncate() with file opening using w+b mode --
-- Testing ftruncate(): truncate file to size = current size --
int(1024)
int(0)
bool(true)
int(0)
bool(false)
int(1024)
-- Testing ftruncate() with file opening using w+t mode --
-- Testing ftruncate(): truncate file to size = current size --
int(1137)
int(0)
bool(true)
int(0)
bool(false)
int(1137)
-- Testing ftruncate() with file opening using x mode --
-- Testing ftruncate(): truncate file to size = current size --
int(1024)
int(0)
bool(true)
int(0)
bool(false)
int(1024)
-- Testing ftruncate() with file opening using xb mode --
-- Testing ftruncate(): truncate file to size = current size --
int(1024)
int(0)
bool(true)
int(0)
bool(false)
int(1024)
-- Testing ftruncate() with file opening using xt mode --
-- Testing ftruncate(): truncate file to size = current size --
int(1137)
int(0)
bool(true)
int(0)
bool(false)
int(1137)
-- Testing ftruncate() with file opening using x+ mode --
-- Testing ftruncate(): truncate file to size = current size --
int(1024)
int(0)
bool(true)
int(0)
bool(false)
int(1024)
-- Testing ftruncate() with file opening using x+b mode --
-- Testing ftruncate(): truncate file to size = current size --
int(1024)
int(0)
bool(true)
int(0)
bool(false)
int(1024)
-- Testing ftruncate() with file opening using x+t mode --
-- Testing ftruncate(): truncate file to size = current size --
int(1137)
int(0)
bool(true)
int(0)
bool(false)
int(1137)
-- Testing ftruncate() with file opening using a mode --
-- Testing ftruncate(): truncate file to size = current size --
int(1024)
int(0)
bool(true)
int(0)
bool(false)
int(1024)
-- Testing ftruncate() with file opening using ab mode --
-- Testing ftruncate(): truncate file to size = current size --
int(1024)
int(0)
bool(true)
int(0)
bool(false)
int(1024)
-- Testing ftruncate() with file opening using at mode --
-- Testing ftruncate(): truncate file to size = current size --
int(1024)
int(0)
bool(true)
int(0)
bool(false)
int(1024)
-- Testing ftruncate() with file opening using a+ mode --
-- Testing ftruncate(): truncate file to size = current size --
int(1024)
int(0)
bool(true)
int(0)
bool(false)
int(1024)
-- Testing ftruncate() with file opening using a+b mode --
-- Testing ftruncate(): truncate file to size = current size --
int(1024)
int(0)
bool(true)
int(0)
bool(false)
int(1024)
-- Testing ftruncate() with file opening using a+t mode --
-- Testing ftruncate(): truncate file to size = current size --
int(1024)
int(0)
bool(true)
int(0)
bool(false)
int(1024)
Done