1--TEST-- 2posix_isatty(): Basic tests 3--EXTENSIONS-- 4posix 5--SKIPIF-- 6<?php 7if (!function_exists('posix_isatty')) die('skip posix_isatty() not found'); 8?> 9--FILE-- 10<?php 11 12var_dump(posix_isatty(0)); 13 14?> 15--EXPECTF-- 16bool(%s) 17