我能分开一个php变量吗?

时间:2010-09-08 06:07:38

标签: php html string variables

好吧,让我们说$ word = abcdefg@hijk.lmn

我可以只为“@”

创建一个新变量

以及之后的其他一切?

(I.E. $ one = abcdefg& $ two = hijk.lmn)

非常感谢

2 个答案:

答案 0 :(得分:5)

使用explode

$word = 'abcdefg@hijk.lmn';
$my_array = explode('@', $word);
echo $my_array[0]; // prints "abcdefg"
echo $my_array[1]; // prints "hijk.lmn"

http://php.net/manual/en/function.explode.php

答案 1 :(得分:0)

list($one, $two) = split("@", $word);