1

我已经创建了组件secureimage验证码,现在我想显示位于 vendor/secureimage/images/refresh.png 和 vendor/secureimage/images/audio_icon.png 下的“vendor files audio/refresh.png”文件

代码 - - - - - -

<object type="application/x-shockwave-flash" data="/adminpanel_login/captcha/securimage_play.swf?bgcol=#ffffff&amp;icon_file=/adminpanel_login/captcha/audio_icon.png&amp;audio_file=<?php echo $captcha_hear;?>" height="32" width="32">
     <param name="movie" value="/adminpanel_login/captcha/securimage_play.swf?bgcol=#ffffff&amp;icon_file=/adminpanel_login/captcha/audio_icon.png&amp;audio_file=<?php echo $captcha_hear;?>" />
</object> 

<a tabindex="-1" style="border-style: none;" href="#" title="Refresh Image" onclick="document.getElementById('captcha').src ='<?php echo $this->webroot;?>admins/securimage/' + Math.random(); this.blur(); return false"><img src="<?php //echo $captcha_image_refresh;?>/adminpanel_login/captcha/refresh.png" alt="Reload Image" height="32" width="32" onclick="this.blur()" align="bottom" border="0" /></a>   
4

1 回答 1

1

您应该将图像放在 webroot 中,这样它们可以直接由您的网络服务器提供,而不是由 php.ini 提供。

您可以通过将图像从符号链接vendorswebroot/img

于 2012-12-13T14:36:24.953 回答