php-8.0.30-src/tests/output/sapi_windows_vt100_support_...

15 lines
269 B
PHP

--TEST--
Test that sapi_windows_vt100_support exists only on Windows
--SKIPIF--
<?php
if(PHP_OS_FAMILY === "Windows") {
echo "skip Only for not Windows systems";
}
?>
--FILE--
<?php
var_dump(function_exists('sapi_windows_vt100_support'));
?>
--EXPECT--
bool(false)