php以逗号分割txt文件里面的字符串问题
$file='1.txt';$c=$_POST["textfield"];$d=$_POST["textfield"];$g=file_get_contents($fil...
$file = '1.txt';
$c=$_POST["textfield"];
$d=$_POST["textfield"];
$g = file_get_contents($file);
print_r(explode(",", $g)); //输出Array ( [0] => '123 [1] => 789' )
怎么得到 $g[0]为123;$g[1]为789
求大神解答!!!!!! 展开
$c=$_POST["textfield"];
$d=$_POST["textfield"];
$g = file_get_contents($file);
print_r(explode(",", $g)); //输出Array ( [0] => '123 [1] => 789' )
怎么得到 $g[0]为123;$g[1]为789
求大神解答!!!!!! 展开
3个回答
展开全部
介绍两个函数给你
<?php
//利用 explode 函数分割字符串到数组
$source = "hello1,hello2,hello3,hello4,hello5";//按逗号分离字符串
$hello = explode(',',$source);
for($index=0;$index<count($hello);$index++){
echo $hello[$index];echo "</br>";
}
?>
<?php
//split函数进行字符分割
// 分隔符可以是斜线,点,或横线
$date = "04/30/1973";
list($month, $day, $year) = split ('[/.-]', $date);
echo "Month: $month; Day: $day; Year: $year<br />\n";
?>
<?php
//利用 explode 函数分割字符串到数组
$source = "hello1,hello2,hello3,hello4,hello5";//按逗号分离字符串
$hello = explode(',',$source);
for($index=0;$index<count($hello);$index++){
echo $hello[$index];echo "</br>";
}
?>
<?php
//split函数进行字符分割
// 分隔符可以是斜线,点,或横线
$date = "04/30/1973";
list($month, $day, $year) = split ('[/.-]', $date);
echo "Month: $month; Day: $day; Year: $year<br />\n";
?>
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
$file = '1.txt';
$c=$_POST["textfield"];
$d=$_POST["textfield"];
$g = file_get_contents($file);
$g=explode(",", $g);
echo $g[0];
echo $g[1];
更多追问追答
追问
没用啊
$g[0]; //显示" ’"这个
$g[1]; // 显示"1" 这个啊
追答
我这就能显示出来,你是按照我上面的代码改的不
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
$file="string.txt";
$content=file_get_contents($file);
$content=explode(',',$content);
print_r($content);
$content=file_get_contents($file);
$content=explode(',',$content);
print_r($content);
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询