You appear to be a bot. Output may be restricted
Description
Tests are_you_local_ip
Usage
Tests_libs_class_oik_remote::test_are_you_local_ip();
Parameters
Returns
voidSource
File name: oik-libs/tests/test-libs-class-oik-remote.phpLines:
1 to 11 of 11
function test_are_you_local_ip() { $local = oik_remote::are_you_local_ip( "https://localhost" ); $this->assertTrue( $local ); $local = oik_remote::are_you_local_ip( "http://localhost" ); $this->assertTrue( $local ); if ( $this->get_computername() == "sb") { $local = oik_remote::are_you_local_ip( "https://s.b" ); $this->assertTrue( $local ); } }View on GitHub