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

16 lines
276 B
Plaintext
Raw Normal View History

2008-12-03 16:20:29 +00:00
--TEST--
posix_isatty(): Basic tests
--SKIPIF--
2008-12-03 20:43:22 +00:00
<?php
if (!extension_loaded('posix')) die('skip - POSIX extension not loaded');
if (!function_exists('posix_isatty')) die('skip posix_isatty() not found');
?>
2008-12-03 16:20:29 +00:00
--FILE--
<?php
var_dump(posix_isatty(0));
?>
--EXPECTF--
bool(%s)