此软件包最新版本(dev-master)没有可用的许可证信息。

一些用于文本日常工作的工具

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

This package is not auto-updated.

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


README

一些用于文本日常工作的工具

示例

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