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