From e14fa886c69c507e8099ddb0f4f08309588603d8 Mon Sep 17 00:00:00 2001 From: "Daniel St. Jules" Date: Thu, 18 Jul 2013 01:31:22 -0400 Subject: [PATCH] Fix readme --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index f2877fb..a591459 100644 --- a/README.md +++ b/README.md @@ -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