Skip to content

kemo/str

Repository files navigation

PHP string object class

The missing PHP string library

Author

This will make living with PHP strings easier by;

  • providing a simple chained API to string operations
  • not mixing up the needle haystack stuff
  • allowing you to extend and add your own methods in seconds
$text = 'Something to translate';
$text = strtr($text, $translation);
$text = htmlspecialchars($text);
$text = nl2br($text);
echo $text;

Str objects allow you this;

echo (new Str('Something to translate'))
	->tr($translation)
	->chars()
	->nl2br();

About

The missing PHP string library

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages