Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用HttpClient,HttpPost以及来自org.apacheAndroid 库中的其他一些人来发出一些发布请求。PHP 有什么方法可以知道这个请求来自 Android 设备?像标题什么的。
HttpClient
HttpPost
org.apache
我相信您正在尝试调用 PHP api,并且您期望该 API 以特定方式为 android 设备运行。
是的,您可以在 PHP 中的 $_SERVER 数组中检测到
<?php $ua = strtolower($_SERVER['HTTP_USER_AGENT']); if(stripos($ua,'android') !== false) { // Do some thing here which you need to do only for android device } ?>