PHP 函数拆分

WBOY
WBOYOriginal
2016-06-23 14:40:021019browse

 $str = "0791280266601-5011";
 print_r (explode("-",$str));

 显示效果:Array ( [0] => 0791280266601 [1] => 5011 ) ;


=========================================
第一我要【0】的怎么拿到?
第二【1】怎么拿到? 现在是拆分开了,但是不知道怎么拿到?
大虾 求指点


回复讨论(解决方案)

$t = explode("-",$str);
echo $t[0];
echo $t[1];

$t = explode("-",$str);
echo $t[0];
echo $t[1];

------------------------------
你那是直接去掉横杠了,我是想去横杠前面的 以及后面的数字


你那输出的效果:07912802666015011  错了

我要的效果是:0791280266601  
后面获到的:5011

版主大人的回复不就可以达到你想要的么,有撒问题?

版主大人的回复不就可以达到你想要的么,有撒问题?
--------------------------------------
我现在 做到的是:
 $str = "0791280266601-5011";
 print_r (explode("-",$str));

 显示效果:Array ( [0] => 0791280266601 [1] => 5011 ) ;

我只想获取Array ( [0] => 0791280266601 [1] => 5011 ) ;里面的[0]值

$str = "0791280266601-5011";
$t = explode("-",$str);
echo $t[0]."
";
echo $t[1];

输出
0791280266601
5011

$str = "0791280266601-5011";
$t = explode("-",$str);
echo $t[0]."
";
echo $t[1];

输出
0791280266601
5011

谢谢大家,我比较笨 谢谢   可以了。

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn