xref: /PHP-5.5/ext/standard/tests/file/statpage.phpt (revision d1acb8d4)
1--TEST--
2getlastmod() and others
3--FILE--
4<?php
5
6var_dump(getlastmod());
7var_dump(getmyinode());
8var_dump(getmyuid());
9var_dump(getmypid());
10var_dump(getmygid());
11
12echo "Done\n";
13?>
14--EXPECTF--
15int(%d)
16int(%d)
17int(%d)
18int(%d)
19int(%d)
20Done
21