xref: /PHP-8.3/ext/posix/tests/posix_getcwd.phpt (revision 74859783)
1--TEST--
2posix_getcwd(): Basic tests
3--EXTENSIONS--
4posix
5--SKIPIF--
6<?php
7if (!function_exists('posix_getcwd')) die('skip posix_getcwd() not found');
8?>
9--FILE--
10<?php
11
12var_dump(posix_getcwd());
13
14?>
15--EXPECTF--
16string(%d) "%s"
17