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

21 lines
239 B
Plaintext
Raw Normal View History

2006-11-15 22:42:28 +00:00
--TEST--
getlastmod() and others
--FILE--
<?php
var_dump(getlastmod());
var_dump(getmyinode());
var_dump(getmyuid());
var_dump(getmypid());
var_dump(getmygid());
echo "Done\n";
?>
2008-05-27 09:34:55 +00:00
--EXPECTF--
2006-11-15 22:42:28 +00:00
int(%d)
int(%d)
int(%d)
int(%d)
int(%d)
Done