PHP | gethostname() Function
The gethostname() function is an inbuilt function in PHP which returns the host or domain name for the local machine. This function is applicable after PHP 5.3.0 before that there was another function called php_uname function.
Syntax:
string gethostname( void )
Parameters: This function doesn’t accept any parameters.
Return Value: This function returns the host or domain name on success and FALSE on failure.
Note: This function is available for PHP 5.3.0 and newer version.
Below program illustrates the gethostname() function in PHP:
Program:
<?php // Use gethostname() function to // get the host name echo gethostname(); ?> |
Output:
pppContainer
Reference: https://www.php.net/manual/en/function.gethostname.php
Recommended Posts:
- How to call a function that return another function in JavaScript ?
- How to get the function name inside a function in PHP ?
- How to get the function name from within that function using JavaScript ?
- PHP | pow( ) Function
- PHP | each() Function
- PHP | Ds\Map put() Function
- PHP | pi( ) Function
- PHP | Ds\Map xor() Function
- PHP | Ds\Set xor() Function
- D3.js | d3.max() function
- p5.js | hex() function
- PHP | key() Function
- CSS | rgb() Function
- PHP | min( ) Function
- PHP | pos() Function
If you like GeeksforGeeks and would like to contribute, you can also write an article using contribute.geeksforgeeks.org or mail your article to contribute@geeksforgeeks.org. See your article appearing on the GeeksforGeeks main page and help other Geeks.
Please Improve this article if you find anything incorrect by clicking on the "Improve Article" button below.



