There is no license information available for the latest version (dev-master) of this package.

Some stuff for routine work with text

dev-master 2014-07-03 02:08 UTC

This package is not auto-updated.

Last update: 2024-09-14 14:34:53 UTC


README

Some stuff for routine work with text

Examples

// Create announce
$title   = "I am title";
$content = "I am content.";
$announce = \Texts\Common::annotate($title, $content);

// Convert notation
$camel = "iAmCamelCasedString";
$under = \Texts\Common::underscorize($camel);
$camel = \Texts\Common::camelize($under);