cakephp中的自定义安全代码不显示

时间:2015-06-02 09:45:56

标签: cakephp

我的wordpress网站上有这个代码。 这是联系我们页面。

<img src="securitycode/SecurityImages.p?characters=5" border="0"  alt="Security code" />

我也上传了

 webroot\fonts\monofont.ttf
  \app\View\Elements\forms\securitycode\SecurityImages.php

如何以cakephp格式转换该代码..

1 个答案:

答案 0 :(得分:0)

在CakePHP中

HtmlHelper::image(string $path, array $options = array())

参数:

$path (string) - 图片的路径。

$options (array) - 一系列html属性。

因此,您的代码看起来像

echo $this->Html->image("securitycode/SecurityImages.p?characters=5", array(
    "alt" => "Security code",
    "border"="0"
));