You appear to be a bot. Output may be restricted
Description
Gets the computer name
Usage
$string = oik_remote::get_computer_name();
Parameters
Returns
string lower case version of computer name, if setSource
File name: oik/libs/class-oik-remote.phpLines:
1 to 8 of 8
static function get_computer_name() { $computer_name = bw_array_get( $_SERVER, "COMPUTERNAME", null ); if ( $computer_name ) { $computer_name = strtolower( $computer_name ); } //echo $computer_name; return $computer_name; }View on GitHub View on Trac