1
0
mirror of https://github.com/danielstjules/Stringy.git synced 2025-08-12 16:24:00 +02:00

Fix readme

This commit is contained in:
Daniel St. Jules
2013-07-18 01:31:22 -04:00
parent 1311f69e10
commit e14fa886c6

View File

@@ -20,6 +20,7 @@ A PHP library with a variety of string manipulation functions with multibyte sup
* [padLeft](#padleft)
* [padRight](#padright)
* [padBoth](#padboth)
* [startsWith](#startswith)
* [Tests](#tests)
* [License](#license)
@@ -248,7 +249,7 @@ By default, the comparison is case-sensitive, but can be made insensitive
by setting $caseSensitive to false.
```php
S::startsWith('foo bar', 'another', false, $encoding); // ' foo bar '
S::startsWith('FÒÔ bàřs', 'fòô bàř', false, 'UTF-8'), // true
```
## TODO