PHP共12篇 第2页

PHP获取当前url链接的一些函数

PHP获取当前url链接的一些函数-雪哥尔
示例链接:https://xulgr.com/test/xulgr.php?qq=2037555766 $_SERVER['SERVER_NAME'] //获取当前链接的主域名,输出结果:xulgr.com $_SERVER['SERVER_PORT'] //获取当前链接的端口号,输出结...
1年前
01756

PHP判断安卓苹果Windows用户当前的操作系统

PHP判断安卓苹果Windows用户当前的操作系统-雪哥尔
<?php $userAgent = $_SERVER['HTTP_USER_AGENT']; if(strpos($userAgent,'iPhone') || strpos($userAgent,'iPad') || strpos($userAgent,'iPod')){ echo '苹果'; }else if(strpos($userAgen...
1年前
01560