php-8.0.30-src/ext/posix/tests/posix_isatty.phpt

16 lines
275 B
PHP

--TEST--
posix_isatty(): Basic tests
--SKIPIF--
<?php
if (!extension_loaded('posix')) die('skip - POSIX extension not loaded');
if (!function_exists('posix_isatty')) die('skip posix_isatty() not found');
?>
--FILE--
<?php
var_dump(posix_isatty(0));
?>
--EXPECTF--
bool(%s)