php-src/ext/posix/tests/posix_getcwd.phpt

20 lines
392 B
Plaintext
Raw Normal View History

2008-12-03 16:20:29 +00:00
--TEST--
posix_getcwd(): Basic tests
--SKIP--
2008-12-03 20:43:22 +00:00
<?php
if (!extension_loaded('posix')) die('skip - POSIX extension not loaded');
if (!function_exists('posix_getcwd')) die('skip posix_getcwd() not found');
?>
2008-12-03 16:20:29 +00:00
--FILE--
<?php
var_dump(posix_getcwd());
var_dump(posix_getcwd(1));
?>
--EXPECTF--
string(%d) "%s"
Warning: posix_getcwd() expects exactly 0 parameters, 1 given in %s on line %d
NULL