在php中将空格分隔的字符串转换为类

时间:2015-01-14 10:24:26

标签: php regex string

我有一个字符串'abc back'

有没有一种简单的方法可以将其转换为PHP中的"AbcBack"

2 个答案:

答案 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));

希望这有助于你