从字符串PHP修剪文本

时间:2018-07-29 12:52:43

标签: php html trim

我想从我的字符串变量中删除不必要的文本。我有一个像$from这样的变量,它包含像123456@blog.com这样的值。我只想要123456。我已经检查了一些修剪示例,但没有得到适当的建议。让我知道是否有人可以帮助我。谢谢

2 个答案:

答案 0 :(得分:1)

您可以像这样在@符号上分割字符串:

$str = "123456@blog.com";

// here you split your string into pieces before and after @
$pieces = explode("@",$str); 

// here you echo your first piece
echo $pieces['0'];

Demo

答案 1 :(得分:0)

您可以使用explode()分割字符串。

Syntax:
explode('separator', string);

 $result= explode("@", '123456@blog.com');
    print_r($result);

输出:

Array
(
    [0] => 123456
    [1] => blog.com
)