本文整理汇总了PHP中str::html方法的典型用法代码示例。如果您正苦于以下问题:PHP str::html方法的具体用法?PHP str::html怎么用?PHP str::html使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类str
的用法示例。
在下文中一共展示了str::html方法的6个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: echoMessage
/**
* Echos the success/error feedback message directly as a HTML-safe string.
*/
public function echoMessage()
{
echo str::html($this->message());
}
示例2: link
/**
* Creates a link tag
*
* @param string $link The URL
* @param string $text Specify a text for the link tag. If false the URL will be used
* @return string
*/
static function link($link, $text = false)
{
$text = $text ? $text : $link;
return '<a href="' . $link . '">' . str::html($text) . '</a>';
}
示例3: echoMessage
/**
* Echos the success/error feedback message directly as a HTML-safe string.
* Either from one specified action or from all actions.
*
* @param mixed $action (optional) the index of the action to get the
* feedback message from
*/
public function echoMessage($action = false)
{
echo str::html($this->message($action));
}
示例4: html
function html($text)
{
return str::html($text, false);
}
示例5: testHtml
public function testHtml()
{
$this->assertEquals('Super Äwesøme String', str::html($this->sample));
}
示例6: testHtml
function testHtml()
{
$this->assertEqual(str::html("some <em>über crazy</em> stuff"), 'some <em>über crazy</em> stuff');
$this->assertEqual(str::html('some <em>über crazy</em> stuff', false), 'some <em>über crazy</em> stuff');
}