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