php-src/ext/posix/tests/posix_isatty.phpt
2008-12-03 20:44:15 +00:00

16 lines
274 B
PHP

--TEST--
posix_isatty(): Basic tests
--SKIP--
<?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)