0

我在时事通讯中为我的横幅图像使用图像缓存。我正在上传图像并将其发送到邮件。问题是图像不是第一次加载。如果我再次来编辑页面,它将发送带有正确图像的邮件

$output = "
<html>
   <body>";

$output.= theme( 'imagecache', 'banner_img', 'images/motel_wright-1.1.png', 'Wright Motel', 'Wright Motel' );

$output.= "
   </body>
 </html>";

 print $output;

请帮我

4

1 回答 1

0

我有过类似的问题。几点建议:

1)当您使用主题功能时,您可能需要重建注册表。尝试

http://api.drupal.org/api/drupal/includes!theme.inc/function/drupal_theme_rebuild/7

2)如果上述失败,您将需要使用 xdebug 并找出首先没有触发 drupal 中的哪个函数。

请在此处发布您的发现。

于 2012-05-20T17:03:15.337 回答