mirror of
https://github.com/php/php-src.git
synced 2025-01-22 03:34:19 +08:00
16 lines
276 B
PHP
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)
|