但是在实际应用的过程中貌似有个问题,我也搞不懂是什么原因,具体表现为
$GLOBALS['cfg_basehost'] 里带有www则不能正常获取,例如 http://www.xxx.com ,如果为 http://xxx.com这种url就能正常获取,奇怪之极。
当然,这种办法极费资源。
include\helpers\extend.helper.PHP最后添加
PHP">if ( ! function_exists('getheight')) { function getheight($litpic){ $litpicc = $GLOBALS['cfg_basehost'].$litpic; $arr = getimagesize($litpicc); $resault = $arr[1]; // 此为高度 //$resault = $arr[0]; //此为宽度 return $resault; } }模板中直接用 [field:litpic function="getheight(@me)"/] 就能输出图片高度
例
第二种办法(推荐):
在/dede/article_add.PHP 插入数据库前添加以下代码:
PHP"> //获取缩略图宽度及高度 $litpicc = $GLOBALS['cfg_basehost'].$litpic; $arr = getimagesize($litpicc);$arr[0]就是宽度,$arr[1]就是高度
这样通过数据库调用就大大节省了系统资源。 原文链接:https://www.f2er.com/dedecms/403874.html