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


PHP Utf8::str_pad方法代码示例

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


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

示例1: test_str_pad

 public function test_str_pad()
 {
     $toPad = '<IñtërnëT>';
     // 10 characters
     $padding = 'ø__';
     // 4 characters
     $this->assertEquals($toPad . '          ', u::str_pad($toPad, 20));
     $this->assertEquals('          ' . $toPad, u::str_pad($toPad, 20, ' ', STR_PAD_LEFT));
     $this->assertEquals('     ' . $toPad . '     ', u::str_pad($toPad, 20, ' ', STR_PAD_BOTH));
     $this->assertEquals($toPad, u::str_pad($toPad, 10));
     $this->assertEquals('5char', str_pad('5char', 4));
     // str_pos won't truncate input string
     $this->assertEquals($toPad, u::str_pad($toPad, 8));
     $this->assertEquals($toPad . 'ø__ø__ø__ø', u::str_pad($toPad, 20, $padding, STR_PAD_RIGHT));
     $this->assertEquals('ø__ø__ø__ø' . $toPad, u::str_pad($toPad, 20, $padding, STR_PAD_LEFT));
     $this->assertEquals('ø__ø_' . $toPad . 'ø__ø_', u::str_pad($toPad, 20, $padding, STR_PAD_BOTH));
 }
开发者ID:nicolas-grekas,项目名称:Patchwork-sandbox,代码行数:17,代码来源:Utf8StrPadTest.php

示例2:

 /**
  * @covers Patchwork\Utf8::str_pad
  */
 function testStr_pad()
 {
     $this->assertSame('ÉÈà-à-à-à-', u::str_pad('ÉÈ', 10, 'à-', STR_PAD_RIGHT));
     $this->assertSame('à-à-à-à-ÉÈ', u::str_pad('ÉÈ', 10, 'à-', STR_PAD_LEFT));
     $this->assertSame('à-à-ÉÈà-à-', u::str_pad('ÉÈ', 10, 'à-', STR_PAD_BOTH));
 }
开发者ID:nicolas-grekas,项目名称:Patchwork-sandbox,代码行数:9,代码来源:Utf8Test.php


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