Example #1
0
 public function testChars()
 {
     $this->eq(s::chars('abc'), array('a', 'b', 'c'));
     $this->eq(s::chars(''), array());
 }
Example #2
0
 public function chars()
 {
     return new XArray(s::chars($this->value));
 }