我有一个字符串'abc back'
有没有一种简单的方法可以将其转换为PHP中的"AbcBack"
答案 0 :(得分:2)
试试ucwords
:
$input = 'abc back';
$output = str_replace(' ', '', ucwords($input));
答案 1 :(得分:2)
在php中使用ucfirst()
函数。使用下面的代码
<?php
$string='abc back';
$p = explode($string," ");
$text="";
foreach($p as $m){
$text .= ucfirst($m);
}
echo str_replace(" ","",$text);// will print AbcBack
您可以使用ucwords()
。使用以下代码
<?php
$string='abc back';
echo str_replace(" ","",ucwords($string));
希望这有助于你