32 lines
672 B
PHP
32 lines
672 B
PHP
--TEST--
|
|
SplFileInfo::openFile() in write mode
|
|
--EXTENSIONS--
|
|
phar
|
|
--INI--
|
|
phar.readonly=0
|
|
--FILE--
|
|
<?php
|
|
|
|
$phar = new Phar(__DIR__.'/SplFileInfo_openFile_write.phar');
|
|
$phar->addFromString('test', 'contents');
|
|
var_dump($phar['test']->openFile('w'));
|
|
|
|
?>
|
|
--CLEAN--
|
|
<?php
|
|
@unlink(__DIR__.'/SplFileInfo_openFile_write.phar');
|
|
?>
|
|
--EXPECTF--
|
|
object(SplFileObject)#%d (%d) {
|
|
["pathName":"SplFileInfo":private]=>
|
|
string(%d) "phar://%stest"
|
|
["fileName":"SplFileInfo":private]=>
|
|
string(4) "test"
|
|
["openMode":"SplFileObject":private]=>
|
|
string(1) "w"
|
|
["delimiter":"SplFileObject":private]=>
|
|
string(1) ","
|
|
["enclosure":"SplFileObject":private]=>
|
|
string(1) """
|
|
}
|