iborodikhin / texts
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
Requires
- php: >=5.3.0
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);