mirror of
https://github.com/hnhx/librex.git
synced 2025-01-26 18:53:05 -03:00
12 lines
278 B
PHP
12 lines
278 B
PHP
|
<?php
|
||
|
function user_agent_result()
|
||
|
{
|
||
|
return array(
|
||
|
"special_response" => array(
|
||
|
"response" => $_SERVER["HTTP_USER_AGENT"],
|
||
|
"source" => null
|
||
|
)
|
||
|
);
|
||
|
}
|
||
|
?>
|