12 lines
246 B
PHP
12 lines
246 B
PHP
|
<?php
|
||
|
function ip_result()
|
||
|
{
|
||
|
return array(
|
||
|
"special_response" => array(
|
||
|
"response" => $_SERVER["REMOTE_ADDR"],
|
||
|
"source" => null
|
||
|
)
|
||
|
);
|
||
|
}
|
||
|
?>
|