判断是不是http请求和使用config下的地址设置
$http = $_SERVER['SERVER_PROTOCOL'] == 'on' ? 'HTTPS' : 'HTTP';
$iconPath = $http.'://'.$_SERVER['HTTP_HOST'].config('template.tpl_replace_string.__PUBLIC__').'/admin'.'/weathericon/W'.$weathers['icon'].'.png';
文章介绍了如何通过$_SERVER变量判断是HTTP还是HTTPS请求,并使用config方法设置URL路径,示例了获取admin/weathericon文件夹中天气图标图片的URL构建过程。
判断是不是http请求和使用config下的地址设置
$http = $_SERVER['SERVER_PROTOCOL'] == 'on' ? 'HTTPS' : 'HTTP';
$iconPath = $http.'://'.$_SERVER['HTTP_HOST'].config('template.tpl_replace_string.__PUBLIC__').'/admin'.'/weathericon/W'.$weathers['icon'].'.png';
1493

被折叠的 条评论
为什么被折叠?