diff options
author | Lorry Tar Creator <lorry-tar-importer@baserock.org> | 2013-03-14 05:42:27 +0000 |
---|---|---|
committer | <> | 2013-04-03 16:25:08 +0000 |
commit | c4dd7a1a684490673e25aaf4fabec5df138854c4 (patch) | |
tree | 4d57c44caae4480efff02b90b9be86f44bf25409 /ext/standard/tests/file/file_put_contents_variation9.phpt | |
download | php2-master.tar.gz |
Imported from /home/lorry/working-area/delta_php2/php-5.4.13.tar.bz2.HEADphp-5.4.13master
Diffstat (limited to 'ext/standard/tests/file/file_put_contents_variation9.phpt')
-rw-r--r-- | ext/standard/tests/file/file_put_contents_variation9.phpt | 70 |
1 files changed, 70 insertions, 0 deletions
diff --git a/ext/standard/tests/file/file_put_contents_variation9.phpt b/ext/standard/tests/file/file_put_contents_variation9.phpt new file mode 100644 index 0000000..7ad09c4 --- /dev/null +++ b/ext/standard/tests/file/file_put_contents_variation9.phpt @@ -0,0 +1,70 @@ +--TEST-- +est file_put_contents() function : usage variation - linked files +--CREDITS-- +Dave Kelsey <d_kelsey@uk.ibm.com> +--SKIPIF-- +<?php +if(substr(PHP_OS, 0, 3) == "WIN") + die("skip Do not run on Windows"); +?> +--FILE-- +<?php +/* Prototype : int file_put_contents(string file, mixed data [, int flags [, resource context]]) + * Description: Write/Create a file with contents data and return the number of bytes written + * Source code: ext/standard/file.c + * Alias to functions: + */ + +echo "*** Testing file_put_contents() : usage variation ***\n"; + +$filename = dirname(__FILE__).'/fileGetContentsVar9.tmp'; +$softlink = dirname(__FILE__).'/fileGetContentsVar9.SoftLink'; +$hardlink = dirname(__FILE__).'/fileGetContentsVar9.HardLink'; +$chainlink = dirname(__FILE__).'/fileGetContentsVar9.ChainLink'; + + +// link files even though it original file doesn't exist yet +symlink($filename, $softlink); +symlink($softlink, $chainlink); + + +// perform tests +run_test($chainlink); +run_test($softlink); + +//can only create a hardlink if the file exists. +file_put_contents($filename,""); +link($filename, $hardlink); +run_test($hardlink); + +unlink($chainlink); +unlink($softlink); +unlink($hardlink); +unlink($filename); + + +function run_test($file) { + $data = "Here is some data"; + $extra = ", more data"; + var_dump(file_put_contents($file, $data)); + var_dump(file_put_contents($file, $extra, FILE_APPEND)); + readfile($file); + echo "\n"; +} + + +echo "\n*** Done ***\n"; +?> +--EXPECT-- +*** Testing file_put_contents() : usage variation *** +int(17) +int(11) +Here is some data, more data +int(17) +int(11) +Here is some data, more data +int(17) +int(11) +Here is some data, more data + +*** Done *** |