最好转换为小写并连接?
$first = "Abc Def";
$second= "Ghi Jkl";
$result= $first.$second;
预期输出: abcdef.ghijkl
答案 0 :(得分:1)
strtolower
转换为小写
$first = str_replace(' ','',strtolower("Abc Def"));
$second= str_replace(' ','',strtolower("Ghi Jkl"));
$result= $first.$second;
答案 1 :(得分:1)
使用strtolower
转换小写,str_replace
转换空格。
最后加入两个变量并在它们之间添加'.'
。
$first = "Abc Def";
$second= "Ghi Jkl";
$low_first = strtolower(str_replace(" ","",$first));
$low_second = strtolower(str_replace(" ","",$second));
echo $finalresult = $low_first.'.'.$low_second;
<强>输出强>
abcdef.ghijkl
答案 2 :(得分:1)
希望这个最简单的一个也有帮助。在这里,我们使用了多个函数implode
,str_replace
和strtolower
<?php
ini_set('display_errors', 1);
$first = "Abc Def";
$second = "Ghi Jkl";
echo strtolower(str_replace(" ","",implode(".", array($first,$second))));
<强>输出:强>
abcdef.ghijkl