当前位置: 首页>>代码示例>>PHP>>正文


PHP str::html方法代码示例

本文整理汇总了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());
 }
开发者ID:peterbinks,项目名称:peterbinks.net,代码行数:7,代码来源:SendForm.php

示例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>';
 }
开发者ID:sdvig,项目名称:kirbycms,代码行数:12,代码来源:kirby.php

示例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));
 }
开发者ID:fetzi,项目名称:kirby-uniform,代码行数:11,代码来源:UniForm.php

示例4: html

function html($text)
{
    return str::html($text, false);
}
开发者ID:narrenfrei,项目名称:kirbycms,代码行数:4,代码来源:defaults.php

示例5: testHtml

 public function testHtml()
 {
     $this->assertEquals('Super &Auml;wes&oslash;me String', str::html($this->sample));
 }
开发者ID:aoimedia,项目名称:kosmonautensofa,代码行数:4,代码来源:StrTest.php

示例6: testHtml

 function testHtml()
 {
     $this->assertEqual(str::html("some <em>über crazy</em> stuff"), 'some <em>&uuml;ber crazy</em> stuff');
     $this->assertEqual(str::html('some <em>über crazy</em> stuff', false), 'some &lt;em&gt;&uuml;ber crazy&lt;/em&gt; stuff');
 }
开发者ID:o-github-o,项目名称:jQuery-Ajax-Upload,代码行数:5,代码来源:string.php


注:本文中的str::html方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。