ip.php 246 B

1234567891011
  1. <?php
  2. function ip_result()
  3. {
  4. return array(
  5. "special_response" => array(
  6. "response" => $_SERVER["REMOTE_ADDR"],
  7. "source" => null
  8. )
  9. );
  10. }
  11. ?>