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


PHP Smarty::_MBSTRING方法代码示例

本文整理汇总了PHP中Smarty::_MBSTRING方法的典型用法代码示例。如果您正苦于以下问题:PHP Smarty::_MBSTRING方法的具体用法?PHP Smarty::_MBSTRING怎么用?PHP Smarty::_MBSTRING使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Smarty的用法示例。


在下文中一共展示了Smarty::_MBSTRING方法的13个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: testDefaultWithoutMbstring

 public function testDefaultWithoutMbstring()
 {
     Smarty::$_MBSTRING = false;
     $tpl = $this->smarty->createTemplate('eval:{"Infertility unlikely to\\nbe passed on, experts say."|regex_replace:"/[\\r\\t\\n]/":" "}');
     $this->assertEquals("Infertility unlikely to be passed on, experts say.", $this->smarty->fetch($tpl));
     Smarty::$_MBSTRING = true;
 }
开发者ID:jjs180,项目名称:dance-america,代码行数:7,代码来源:PluginModifierRegexReplaceTests.php

示例2: testUmlautsWithoutMbstring

 public function testUmlautsWithoutMbstring()
 {
     Smarty::$_MBSTRING = false;
     $result = "two convicts eväde nööse, jury hung.";
     $tpl = $this->smarty->createTemplate('eval:{"Two Convicts Eväde NöÖse, Jury Hung."|lower}');
     $this->assertNotEquals($result, $this->smarty->fetch($tpl));
     Smarty::$_MBSTRING = true;
 }
开发者ID:jjs180,项目名称:dance-america,代码行数:8,代码来源:PluginModifierLowerTests.php

示例3: testUmlautsWithoutMbstring

 public function testUmlautsWithoutMbstring()
 {
     Smarty::$_MBSTRING = false;
     $result = "IF STRIKE ISN'T SÄTTLED ÜQUICKLY IT MAY LAST A WHILE.";
     $tpl = $this->smarty->createTemplate('eval:{"If Strike isn\'t Sättled ÜQuickly it may Last a While."|upper}');
     $this->assertNotEquals($result, $this->smarty->fetch($tpl));
     Smarty::$_MBSTRING = true;
 }
开发者ID:jjs180,项目名称:dance-america,代码行数:8,代码来源:PluginModifierUpperTests.php

示例4: testUmlautsSpacesWithoutMbstring

 public function testUmlautsSpacesWithoutMbstring()
 {
     Smarty::$_MBSTRING = false;
     $result = "33";
     $tpl = $this->smarty->createTemplate('eval:{"Cold Wäve Linked tö Temperatures."|count_characters:true}');
     $this->assertNotEquals($result, $this->smarty->fetch($tpl));
     Smarty::$_MBSTRING = true;
 }
开发者ID:jjs180,项目名称:dance-america,代码行数:8,代码来源:PluginModifierCountCharactersTests.php

示例5: testHtmlallWithoutMbstring

 public function testHtmlallWithoutMbstring()
 {
     Smarty::$_MBSTRING = false;
     $encoded = "aäЗдра><&ääвсствуйте";
     $result = "aテ、ミ厘エム�ミー><&amp;テ、テ、ミイム?ム?ムひイムσケムひオ";
     $tpl = $this->smarty->createTemplate('eval:{"' . $encoded . '"|unescape:"htmlall"}');
     $this->assertEquals($result, $this->smarty->fetch($tpl));
     Smarty::$_MBSTRING = true;
 }
开发者ID:manishbathla,项目名称:smarty-php,代码行数:9,代码来源:PluginModifierUnescapeTests.php

示例6: testToUtf32leWithoutMbstring

 public function testToUtf32leWithoutMbstring()
 {
     Smarty::$_MBSTRING = false;
     $encoded = "hällö wörld 8";
     $result = mb_convert_encoding($encoded, "UTF-32LE", "UTF-8");
     $tpl = $this->smarty->createTemplate('eval:{"' . $encoded . '"|to_charset:"UTF-32LE"}');
     $this->assertEquals($encoded, $tpl->fetch());
     Smarty::$_MBSTRING = true;
 }
开发者ID:mrsank,项目名称:work_sample,代码行数:9,代码来源:PluginModifierCharsetTests.php

示例7: testDefaultWithoutMbstring

 public function testDefaultWithoutMbstring()
 {
     Smarty::$_MBSTRING = false;
     $tpl = $this->smarty->createTemplate('eval:{"hello world."|count_sentences}');
     $this->assertEquals("1", $this->smarty->fetch($tpl));
     $tpl = $this->smarty->createTemplate('eval:{"hello world. I\'m another? Sentence!"|count_sentences}');
     $this->assertEquals("3", $this->smarty->fetch($tpl));
     $tpl = $this->smarty->createTemplate('eval:{"hello world.wrong"|count_sentences}');
     $this->assertEquals("0", $this->smarty->fetch($tpl));
     Smarty::$_MBSTRING = true;
 }
开发者ID:jjs180,项目名称:dance-america,代码行数:11,代码来源:PluginModifierCountSentencesTests.php

示例8: testNonstdWithoutMbstring

 public function testNonstdWithoutMbstring()
 {
     Smarty::$_MBSTRING = false;
     $tpl = $this->smarty->createTemplate('eval:{"' . utf8_decode('sma\'rty@»example«.com') . '"|escape:"nonstd"}');
     $this->assertEquals("sma'rty@&#187;example&#171;.com", $this->smarty->fetch($tpl));
     Smarty::$_MBSTRING = true;
 }
开发者ID:jjs180,项目名称:dance-america,代码行数:7,代码来源:PluginModifierEscapeTests.php

示例9: testUmlautsWithoutMbstring

 public function testUmlautsWithoutMbstring()
 {
     Smarty::$_MBSTRING = false;
     $result = '<a href="mailto:me+smtpext@example.com?cc=you@example.com,they@example.com&subject=h%C3%A4llo%20w%C3%B6rld" >me+smtpext@example.com</a>';
     $tpl = $this->smarty->createTemplate('eval:{mailto address="me+smtpext@example.com" cc="you@example.com,they@example.com" subject="hällo wörld"}');
     $this->assertEquals($result, $this->smarty->fetch($tpl));
     Smarty::$_MBSTRING = true;
 }
开发者ID:mrsank,项目名称:work_sample,代码行数:8,代码来源:PluginFunctionMailtoTests.php

示例10: testLinebreaks2WithoutMbstring

 public function testLinebreaks2WithoutMbstring()
 {
     Smarty::$_MBSTRING = false;
     $tpl = $this->smarty->createTemplate('eval:{"Blind woman
         gets 
         new kidney from dad she hasn\'t seen in years."|wordwrap:30}');
     $this->assertEquals("Blind woman\n            gets \n            new kidney from\ndad she hasn't seen in years.", $this->smarty->fetch($tpl));
     Smarty::$_MBSTRING = true;
 }
开发者ID:jjs180,项目名称:dance-america,代码行数:9,代码来源:PluginModifierWordwrapTests.php

示例11: testQuotesBeginningWithoutMbstring

 public function testQuotesBeginningWithoutMbstring()
 {
     Smarty::$_MBSTRING = false;
     $tpl = $this->smarty->createTemplate('eval:{"\\"delayed. umlauts\\" foo."|capitalize}');
     $this->assertEquals("\"Delayed. Umlauts\" Foo.", $this->smarty->fetch($tpl));
     $tpl = $this->smarty->createTemplate('eval:{"\'delayed. umlauts\' foo."|capitalize}');
     $this->assertEquals("'Delayed. Umlauts' Foo.", $this->smarty->fetch($tpl));
     Smarty::$_MBSTRING = true;
 }
开发者ID:mrsank,项目名称:work_sample,代码行数:9,代码来源:PluginModifierCapitalizeTests.php

示例12: testMiddleWithoutMbstring

 public function testMiddleWithoutMbstring()
 {
     Smarty::$_MBSTRING = false;
     $result = 'Two Sisters Re..ckout Counter.';
     $tpl = $this->smarty->createTemplate('eval:{"Two Sisters Reunite after Eighteen Years at Checkout Counter."|truncate:30:"..":true:true}');
     $this->assertEquals($result, $this->smarty->fetch($tpl));
     Smarty::$_MBSTRING = true;
 }
开发者ID:jjs180,项目名称:dance-america,代码行数:8,代码来源:PluginModifierTruncateTests.php

示例13: testStyleEmailWithoutMbstring

 public function testStyleEmailWithoutMbstring()
 {
     Smarty::$_MBSTRING = false;
     $result = "\n\nThis is foo. This is foo. This is foo. This is foo. This is foo. This is\nfoo.\n\nThis is bar.\n\nbar foo bar foo foo. bar foo bar foo foo. bar foo bar foo foo. bar foo\nbar foo foo. bar foo bar foo foo. bar foo bar foo foo. bar foo bar foo\nfoo.\n\n";
     $tpl = $this->smarty->createTemplate('eval:{textformat style="email"}' . $this->string . '{/textformat}');
     $this->assertEquals($result, $this->smarty->fetch($tpl));
     Smarty::$_MBSTRING = true;
 }
开发者ID:mrsank,项目名称:work_sample,代码行数:8,代码来源:PluginBlockTextformatTests.php


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