Description :
Tout est dans le titre :)
Portion de code
1 2 3 4 5 6 7 8 9 10
|
<? // Usage: echo finger(hostname [,username, [port]]); Function finger ($host, $user= "", $port=79) { $rc=fsockopen($host,$port); fputs($rc, "$usern"); while (!feof($rc)) { $str .= fgets($rc,128); } fclose($rc); return $str; } ?> |
|