Esempio n. 1
0
 public function testStringChopdown()
 {
     $str = "abcdefg";
     $this->assertEquals("abcd", StringUtils::stringChopdown($str, 4));
     $chinese = "中国人";
     $this->assertEquals("中", StringUtils::stringChopdown($chinese, 1));
     $this->assertNotEquals("中", StringUtils::stringChopdown($chinese, 1, true));
     $this->assertEquals("中", StringUtils::stringChopdown($chinese, 3, true));
 }