1--TEST-- 2posix_isatty(): Basic tests 3--EXTENSIONS-- 4posix 5--FILE-- 6<?php 7 8var_dump(posix_isatty(STDIN)); 9 10?> 11--EXPECT-- 12bool(false) 13