LibreZ/engines/special/ip.php

13 lines
320 B
PHP
Raw Permalink Normal View History

2023-10-07 15:58:03 +02:00
<?php
class IPRequest extends EngineRequest {
public function parse_results($response) {
return array(
"special_response" => array(
"response" => $_SERVER["REMOTE_ADDR"],
"source" => null
)
);
}
}
?>