php-src/ext/posix/tests/posix_isatty.phpt
2009-07-21 14:02:24 +00:00

16 lines
276 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)