PHP code example of kaankilic / serverup

1. Go to this page and download the library: Download kaankilic/serverup library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

kaankilic / serverup example snippets


'providers' => array(
	...
    Kaankilic\ServerUp\Providers\ServerUpServiceProvider::class,
)

'aliases' => array(
	... aliases
	'ServerUp'=> Kaankilic\ServerUp\Facades\ServerUp::class,
)

php artisan vendor:publish --provider="Kaankilic\ServerUp\Providers\ServerUpServiceProvider"

	ServerUp::ping("http://facebook.com",80);
	ServerUp::getIsTotalyAvail(); //returns boolean value

	ServerUp::setHostname("http://facebook.com");
	ServerUp::setPort(80);
	ServerUp::setSampleAmount(50);
	ServerUp::setTimeoutDuration(10); // unit is integer based milliseconds
	ServerUp::getIsTotalyAvail(); //returns boolean value
	var_dump(ServerUp::ping()); //returns the SocketResponses for each ping request