有人可以帮我完成这个PHP功能吗?我想采用这样的字符串:'this-is-a-string'并将其转换为:'thisIsAString':
function dashesToCamelCase($string, $capitalizeFirstCharacter = false) {
// Do stuff
return $string;
}
答案 0 :(得分:145)
不需要正则表达式或回调。几乎所有的工作都可以用ucwords完成:
function dashesToCamelCase($string, $capitalizeFirstCharacter = false)
{
$str = str_replace(' ', '', ucwords(str_replace('-', ' ', $string)));
if (!$capitalizeFirstCharacter) {
$str[0] = strtolower($str[0]);
}
return $str;
}
echo dashesToCamelCase('this-is-a-string');
如果您使用的是PHP> = 5.3,则可以使用lcfirst而不是strtolower。
在PHP 5.4.32 / 5.5.16中为ucwords添加了第二个参数,这意味着我们不需要先将破折号更改为空格(感谢Lars Ebert和PeterM指出这一点)。这是更新的代码:
function dashesToCamelCase($string, $capitalizeFirstCharacter = false)
{
$str = str_replace('-', '', ucwords($string, '-'));
if (!$capitalizeFirstCharacter) {
$str = lcfirst($str);
}
return $str;
}
echo dashesToCamelCase('this-is-a-string');
答案 1 :(得分:41)
这可以通过使用接受分隔符作为参数的ucwords来非常简单地完成:
function camelize($input, $separator = '_')
{
return str_replace($separator, '', ucwords($input, $separator));
}
注意:需要php至少5.4.32,5.5.16
答案 2 :(得分:7)
这是我对如何处理它的变化。这里我有两个函数,第一个 camelCase 将任何东西变成camelCase,如果变量已经包含了cameCase,它就不会乱。第二个 uncamelCase 将camelCase变为下划线(处理数据库密钥时的强大功能)。
function camelCase($str) {
$i = array("-","_");
$str = preg_replace('/([a-z])([A-Z])/', "\\1 \\2", $str);
$str = preg_replace('@[^a-zA-Z0-9\-_ ]+@', '', $str);
$str = str_replace($i, ' ', $str);
$str = str_replace(' ', '', ucwords(strtolower($str)));
$str = strtolower(substr($str,0,1)).substr($str,1);
return $str;
}
function uncamelCase($str) {
$str = preg_replace('/([a-z])([A-Z])/', "\\1_\\2", $str);
$str = strtolower($str);
return $str;
}
让我们测试两个:
$camel = camelCase("James_LIKES-camelCase");
$uncamel = uncamelCase($camel);
echo $camel." ".$uncamel;
答案 3 :(得分:5)
我可能会使用preg_replace_callback()
,就像这样:
function dashesToCamelCase($string, $capitalizeFirstCharacter = false) {
return preg_replace_callback("/-[a-zA-Z]/", 'removeDashAndCapitalize', $string);
}
function removeDashAndCapitalize($matches) {
return strtoupper($matches[0][1]);
}
答案 4 :(得分:4)
您正在寻找preg_replace_callback,您可以像这样使用它:
$camelCase = preg_replace_callback('/-(.?)/', function($matches) {
return ucfirst($matches[1]);
}, $dashes);
答案 5 :(得分:4)
重载一行,带有doc block ...
/**
* Convert underscore_strings to camelCase (medial capitals).
*
* @param {string} $str
*
* @return {string}
*/
function snakeToCamel ($str) {
// Remove underscores, capitalize words, squash, lowercase first.
return lcfirst(str_replace(' ', '', ucwords(str_replace('_', ' ', $str))));
}
答案 6 :(得分:3)
$string = explode( "-", $string );
$first = true;
foreach( $string as &$v ) {
if( $first ) {
$first = false;
continue;
}
$v = ucfirst( $v );
}
return implode( "", $string );
未经测试的代码。检查PHP文档中的函数im- / explode和ucfirst。
答案 7 :(得分:3)
function camelize($input, $separator = '_')
{
return lcfirst(str_replace($separator, '', ucwords($input, $separator)));
}
echo ($this->camelize('someWeir-d-string'));
// output: 'someWeirdString';
答案 8 :(得分:2)
一个班轮,PHP> = 5.3:
$camelCase = lcfirst(join(array_map('ucfirst', explode('-', $url))));
答案 9 :(得分:1)
TurboCommons库在StringUtils类中包含一个通用的formatCase()方法,它允许您将字符串转换为许多常见的案例格式,如CamelCase,UpperCamelCase,LowerCamelCase,snake_case,Title Case等等。
https://github.com/edertone/TurboCommons
要使用它,请将phar文件导入您的项目并:
use org\turbocommons\src\main\php\utils\StringUtils;
echo StringUtils::formatCase('sNake_Case', StringUtils::FORMAT_CAMEL_CASE);
// will output 'sNakeCase'
以下是方法源代码的链接:
答案 10 :(得分:1)
或者,如果您不想处理正则表达式,并且希望避免显式循环:
// $key = 'some-text', after transformation someText
$key = lcfirst(implode('', array_map(function ($key) {
return ucfirst($key);
}, explode('-', $key))));
答案 11 :(得分:1)
尝试一下:
$var='snake_case';
echo ucword($var,'_');
输出:
Snake_Case remove _ with str_replace
答案 12 :(得分:1)
这是一行代码中非常简单的解决方案
$string='this-is-a-string' ;
echo str_replace('-', '', ucwords($string, "-"));
输出 ThisIsAString
答案 13 :(得分:0)
$stringWithDash = 'Pending-Seller-Confirmation';
$camelize = str_replace('-', '', ucwords($stringWithDash, '-'));
echo $camelize;
输出:PendingSellerConfirmation
ucwords
秒(可选)参数有助于识别对字符串进行camelize的分隔符。
str_replace
用于通过删除分隔符来完成输出。
答案 14 :(得分:0)
private function dashesToCamelCase($string)
{
$explode = explode('-', $string);
$return = '';
foreach ($explode as $item) $return .= ucfirst($item);
return lcfirst($return);
}
答案 15 :(得分:0)
在Laravel中使用Str::camel()
use Illuminate\Support\Str;
$converted = Str::camel('foo_bar');
// fooBar
答案 16 :(得分:0)
这是一个使用实用的array_reduce方法的小助手功能。 至少需要PHP 7.0
private function toCamelCase(string $stringToTransform, string $delimiter = '_'): string
{
return array_reduce(
explode($delimiter, $stringToTransform),
function ($carry, string $part): string {
return $carry === null ? $part: $carry . ucfirst($part);
}
);
}
答案 17 :(得分:0)
上面有很多好的解决方案,我可以提供一种以前没有人提及的不同方法。本示例使用数组。我在项目Shieldon Firewall上使用了这种方法。
/**
* Covert string with dashes into camel-case string.
*
* @param string $string A string with dashes.
*
* @return string
*/
function getCamelCase(string $string = '')
{
$str = explode('-', $string);
$str = implode('', array_map(function($word) {
return ucwords($word);
}, $str));
return $str;
}
测试:
echo getCamelCase('This-is-example');
结果:
ThisIsExample
答案 18 :(得分:0)
这是另一种选择:
private function camelcase($input, $separator = '-')
{
$array = explode($separator, $input);
$parts = array_map('ucwords', $array);
return implode('', $parts);
}
答案 19 :(得分:0)
如果您使用Laravel框架,则只能使用camel_case()方法。
camel_case('this-is-a-string') // 'thisIsAString'
答案 20 :(得分:0)
另一种简单方法:
$nasty = [' ', '-', '"', "'"]; // array of nasty characted to be removed
$cameled = lcfirst(str_replace($nasty, '', ucwords($string)));
答案 21 :(得分:0)
此功能类似于@Svens的功能
$dashes = 'function-test-camel-case';
$ex1 = toCamelCase($dashes);
$ex2 = toCamelCase($dashes, true);
var_dump($ex1);
//string(21) "functionTestCamelCase"
var_dump($ex2);
//string(21) "FunctionTestCamelCase"
但更清楚,(我认为:D)并使用可选参数来大写第一个字母。
用法:
{{1}}
答案 22 :(得分:0)
function camelCase($text) {
return array_reduce(
explode('-', strtolower($text)),
function ($carry, $value) {
$carry .= ucfirst($value);
return $carry;
},
'');
}
显然,如果是另一个分隔符而不是' - ',例如'_',也是匹配的,那么这将不起作用,那么preg_replace可以首先在$ text中将所有(连续)分隔符转换为' - '...
答案 23 :(得分:-1)
试试这个:
return preg_replace("/\-(.)/e", "strtoupper('\\1')", $string);
答案 24 :(得分:-2)
这更简单:
$string = preg_replace( '/-(.?)/e',"strtoupper('$1')", strtolower( $string ) );