连字符分隔给CamelCase和CamelCase以连字符分隔

时间:2012-02-14 12:13:36

标签: php string

有没有人知道最快在每个方向进行转换的方式?

目前我正在将它用于连字符到CamelCase:

$Hstring = 'hello-world';
$CCstring = implode('', array_map('ucwords', explode('-', $Hstring)));

2 个答案:

答案 0 :(得分:3)

$subject = 'abc-def-xyz';
$results = preg_replace_callback ('/-(.)/', create_function('$matches','return strtoupper($matches[1]);'), $subject);

var_dump($results);

$subject = 'abcDefXyz';
$results = preg_replace_callback ('/([A-Z])/', create_function('$matches','return \'-\' . strtolower($matches[1]);'), $subject);

var_dump($results);

修改

如果您想知道它是否更快,您需要对其进行分析以确定

答案 1 :(得分:1)

我刚刚发布了这个包,它正是这样做的:https://github.com/sebastiansulinski/string-converter

你也可以用包装工具拉它。

希望它有所帮助。