php-src/ext/standard/tests/file/touch.phpt

59 lines
1.1 KiB
Plaintext
Raw Normal View History

2006-11-16 13:00:03 +00:00
--TEST--
touch() tests
--SKIPIF--
<?php
if (substr(PHP_OS, 0, 3) == 'WIN') {
die('skip.. only for Non Windows.');
}
?>
2006-11-16 13:00:03 +00:00
--FILE--
<?php
// This doesn't work for windows, time, atime usage results in very different
// output to linux. This could be a php.net bug on windows or a windows querk.
2006-11-16 13:00:03 +00:00
$filename = dirname(__FILE__)."/touch.dat";
var_dump(touch());
var_dump(touch($filename));
var_dump(filemtime($filename));
@unlink($filename);
var_dump(touch($filename, 101));
var_dump(filemtime($filename));
@unlink($filename);
var_dump(touch($filename, -1));
var_dump(filemtime($filename));
@unlink($filename);
var_dump(touch($filename, 100, 100));
var_dump(filemtime($filename));
@unlink($filename);
var_dump(touch($filename, 100, -100));
var_dump(filemtime($filename));
var_dump(touch("/no/such/file/or/directory"));
@unlink($filename);
echo "Done\n";
?>
--EXPECTF--
2006-11-16 13:00:03 +00:00
Warning: touch() expects at least 1 parameter, 0 given in %s on line %d
NULL
bool(true)
int(%d)
bool(true)
int(101)
bool(true)
int(%i)
2006-11-16 13:00:03 +00:00
bool(true)
int(100)
bool(true)
2008-08-18 09:20:56 +00:00
int(100)
2006-11-16 13:00:03 +00:00
Warning: touch(): Unable to create file /no/such/file/or/directory because %s in %s on line %d
2006-11-16 13:00:03 +00:00
bool(false)
Done