xref: /PHP-8.3/ext/posix/tests/posix_isatty.phpt (revision 39ef5ca3)
1--TEST--
2posix_isatty(): Basic tests
3--EXTENSIONS--
4posix
5--FILE--
6<?php
7
8var_dump(posix_isatty(STDIN));
9
10?>
11--EXPECT--
12bool(false)
13