Skip to content

Latest commit

 

History

History
25 lines (21 loc) · 638 Bytes

README.md

File metadata and controls

25 lines (21 loc) · 638 Bytes

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();