mirror of
https://github.com/php/php-src.git
synced 2025-01-10 21:14:37 +08:00
18 lines
403 B
PHP
18 lines
403 B
PHP
--TEST--
|
|
SplFileObject::fwrite function - writing with two parameters length < input string length
|
|
--FILE--
|
|
<?php
|
|
$file = dirname(__FILE__).'/SplFileObject_fwrite_variation_001.txt';
|
|
if(file_exists($file)) {
|
|
unlink($file);
|
|
}
|
|
$obj = New SplFileObject($file,'w');
|
|
$obj->fwrite('test_write',4);
|
|
var_dump(file_get_contents($file));
|
|
if(file_exists($file)) {
|
|
unlink($file);
|
|
}
|
|
?>
|
|
--EXPECT--
|
|
string(4) "test"
|