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

Some stuff for routine work with text

Installs: 45

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 1

Forks: 0

Open Issues: 0

pkg:composer/iborodikhin/texts

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

This package is not auto-updated.

Last update: 2025-09-27 19:22:09 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);