我正在寻找一种将字符串变量拆分为两种的方法。举个例子 我有:
$activities = "In the morning we will dance, in the evening we will sing"
我想把它分成,
$activities1 = "In the morning we will dance"
$activities2 = "In the evening we will sing"
我将不胜感激。
由于
答案 0 :(得分:6)
使用爆炸分割变量
(http://php.net/manual/en/function.explode.php)
// Example1
$pizza = "porcion1 porcion2 porcion3 porcion4 porcion5 porcion6";
$porciones = explode(" ", $pizza);
echo $porciones[0]; // porción1
echo $porciones[1]; // porción2
您可以在此设置分割字符explode("HERE", $var);
答案 1 :(得分:2)
您需要使用爆炸功能。让我们说这是你的变量..
$activities = "In the morning we will dance, in the evening we will sing"
您将使用PHP explode()
函数进行拆分。
$activities = explode(",", $activities);
这会将,
中的句子从$activities
拆分,并使用ucfirst
将第一个字母设为大写字母。
echo $activities[0];
echo ucfirst($activities[1]);
参考: