コード例 #1
0
ファイル: StringTest.php プロジェクト: elevenone/String
 public function testSplit()
 {
     $helloworld = new Str("Hello, world.");
     $hello = $helloworld->substring(0, 6);
     $world = $helloworld->substring(7);
     $this->assertEquals($helloworld->split("/ /"), array($hello, $world));
 }