我使用的是下面的代码,它完全适用于android手机,但不适用于ios。在ios上实现这一点的完美方式是什么?
$userAgent = $_SERVER['HTTP_USER_AGENT'];
if (strpos($userAgent, 'Instagram')) {
header('Content-type: application/pdf');
header('Content-Disposition: inline; filename= test');
header('Content-Transfer-Encoding: binary');
header('Accept-Ranges: bytes');
@readfile($file);
}
else{
header('Location: index.php');
}
我想在移动应用的外部浏览器上打开index.php
PHP运行在服务器端,而不是在iOS设备上。
相反,您可以只使用主页URL吗?它默认运行index.php文件的代码?
header('Location: siteaddress.com');