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