mirror of
https://github.com/php/php-src.git
synced 2024-12-16 21:37:49 +08:00
19 lines
376 B
PHP
19 lines
376 B
PHP
--TEST--
|
|
Test function posix_ctermid() by calling it with its expected arguments
|
|
--CREDITS--
|
|
Marco Fabbri mrfabbri@gmail.com
|
|
Francesco Fullone ff@ideato.it
|
|
#PHPTestFest Cesena Italia on 2009-06-20
|
|
--SKIPIF--
|
|
<?php
|
|
if(!extension_loaded("posix")) print "skip - POSIX extension not loaded";
|
|
?>
|
|
--FILE--
|
|
<?php
|
|
|
|
var_dump( posix_ctermid() );
|
|
|
|
?>
|
|
--EXPECTF--
|
|
string(%d) %s
|