我有一个插件/功能,用于检测设备是否为移动设备/平板电脑/台式机。
E.g:
<img src="/path/to/images/foo{if detect_device == 'desktop'}-highres{/if}.jpg"
插件
<?php
/*
* Smarty plugin
* -------------------------------------------------------------
* File: function.detect_device.php
* Type: function
* Name: detect_device
* Purpose: Simple plugin to access Mobile_Detect methods from within templates
* Examples:
* {if detect_device == 'tablet'} - return string either: mobile/tablet/desktop
* {if detect_device action='isAndroidOS'} - boolean
* {if detect_device action='isiOS'} - boolean
* -------------------------------------------------------------
*/
function smarty_function_detect_device($params, &$smarty)
{
// Include and instantiate the class.
require_once 'Mobile_Detect/Mobile_Detect.php';
$detect = new Mobile_Detect;
// Access specific method
if(!empty($params)){
foreach($params as $param){
if(method_exists($detect, $param)){
return $detect->$param();
}
}
} else {
// Simple device type
switch (true) {
case $detect->isMobile() : return 'mobile';
case $detect->isTablet() : return 'tablet';
default : return 'desktop';
}
}
}
?>
Q1。为什么这不是真的{if detect_device == 'desktop'}
但是当我
{detect_device|@var_dump}
它返回字符串'desktop'(长度= 7)?
我想我只是混淆了我应该使用的插件类型,因为我现在想要将参数传递给插件我应该使用修饰符吗?我更喜欢这种语法{if $detect_device|isiOS}
,但这会尝试检查isiOS是否是修饰符而不是参数。
Q2。有没有办法缓存Mobile_Detect对象,以便它只执行一次用户代理计算?
答案 0 :(得分:0)
您需要$来访问指定的变量
<img src="/path/to/images/foo{if $detect_device == 'desktop'}-highres{/if}.jpg"
答案 1 :(得分:0)
正如您猜测的那样,语法{detect_device}
与{if detect_device == 'desktop'}
不同。前者调用函数“detect device”,而后者将字符串文字detect_device
与值进行比较。
如果你想使用修饰符,正确的方法是这个(manual):
{'isiOS'|detect_device}
关于缓存结果,您不必存储Mobile_Detect对象,而是存储其结果(浏览器字符串)。为此,您可以使用PHP的常用方法来持久化值:您可以使用$GLOBALS
变量空间,或者,如果您正在使用会话,则将结果存储在会话中(如果用户使用登录,则会有所不同)一个不同的浏览器)。饼干也一样。
会话/ cookie方法更好,因为它会在整个用户会话中(或更长时间)缓存结果,而不是每页加载一次