public function testIStartingWith()
 {
     $this->eq(s::iStartingWith('abCdef', 'cd'), 'Cdef');
 }
Exemple #2
0
 public function iStartingWith($substr)
 {
     return self::_wrap(s::iStartingWith($this->value, self::unwrap($substr)));
 }