<?php
var_dump( posix_ttyname(STDOUT) );
?>
returns:
string(10) "/dev/pts/0"
When using pseudo terminal 1 (ie ssh)
(PHP 4, PHP 5, PHP 7)
posix_ttyname — Determine terminal device name
$file_descriptor
) : string|false
Returns a string for the absolute path to the current
terminal device that is open on the file descriptor
file_descriptor
.
fd
Descriptorul fișierului, care trebuie să fie o resource de fișier, sau un integer. Un integer se va presupune a fi un descriptor de fișier care poate fi transmis direct către apelul de sistem ce stă la bază.
În majoritatea cazurilor veți dori să utilizați o resource de fișier.
On success, returns a string of the absolute path of the
file_descriptor
. On failure, returns false
<?php
var_dump( posix_ttyname(STDOUT) );
?>
returns:
string(10) "/dev/pts/0"
When using pseudo terminal 1 (ie ssh)