示例#1
0
 public function testSplit()
 {
     $helloworld = new Str("Hello, world.");
     $hello = $helloworld->substring(0, 6);
     $world = $helloworld->substring(7);
     $this->assertEquals($helloworld->split("/ /"), array($hello, $world));
 }