iborodikhin / texts
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
Requires
- php: >=5.3.0
This package is not auto-updated.
Last update: 2024-11-09 15:10:48 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);