PHP整个数组中字符串出现的次数
Array([0]=>.[1]=>..[2]=>1357795020.txt[3]=>1357795025.txt[4]=>1357795179.txt[5]=>1357...
Array
(
[0] => .
[1] => ..
[2] => 1357795020.txt
[3] => 1357795025.txt
[4] => 1357795179.txt
[5] => 1357795205.txt
[6] => 1357795213.txt
[7] => aaa
[8] => index.php
[9] => menu.php
)
.txt在数组中出现的次数 展开
(
[0] => .
[1] => ..
[2] => 1357795020.txt
[3] => 1357795025.txt
[4] => 1357795179.txt
[5] => 1357795205.txt
[6] => 1357795213.txt
[7] => aaa
[8] => index.php
[9] => menu.php
)
.txt在数组中出现的次数 展开
5个回答
2013-01-14 · 知道合伙人软件行家
关注
展开全部
试编写代码如下:
<meta charset="UTF-8"/>
<?php
$arr = Array
(
0 => '.',
1 => '..',
2 => '1357795020.txt',
3 => '1357795025.txt',
4 => '1357795179.txt',
5 => '1357795205.txt',
6 => '1357795213.txt',
7 => 'aaa',
8 => 'index.php',
9 => 'menu.php'
);
$sum = 0;
foreach($arr as $value)
{
if(strpos($value,'.txt')) $sum++;
}
echo '含有 .txt 的共有 ', $sum ,' 个';
?>
<meta charset="UTF-8"/>
<?php
$arr = Array
(
0 => '.',
1 => '..',
2 => '1357795020.txt',
3 => '1357795025.txt',
4 => '1357795179.txt',
5 => '1357795205.txt',
6 => '1357795213.txt',
7 => 'aaa',
8 => 'index.php',
9 => 'menu.php'
);
$sum = 0;
foreach($arr as $value)
{
if(strpos($value,'.txt')) $sum++;
}
echo '含有 .txt 的共有 ', $sum ,' 个';
?>
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
试编写代码如下:
<meta charset="UTF-8"/>
<?php
$arr = Array
(
0 => '.',
1 => '..',
2 => '1357795020.txt',
3 => '1357795025.txt',
4 => '1357795179.txt',
5 => '1357795205.txt',
6 => '1357795213.txt',
7 => 'aaa',
8 => 'index.php',
9 => 'menu.php'
);
$sum = 0;
foreach($arr as $value)
{
if(strpos($value,'.txt')) $sum++;
}
echo '含有 .txt 的共有 ', $sum ,' 个';
?>
<meta charset="UTF-8"/>
<?php
$arr = Array
(
0 => '.',
1 => '..',
2 => '1357795020.txt',
3 => '1357795025.txt',
4 => '1357795179.txt',
5 => '1357795205.txt',
6 => '1357795213.txt',
7 => 'aaa',
8 => 'index.php',
9 => 'menu.php'
);
$sum = 0;
foreach($arr as $value)
{
if(strpos($value,'.txt')) $sum++;
}
echo '含有 .txt 的共有 ', $sum ,' 个';
?>
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
你在手册查看这个函数array_count_values,希望能帮助你
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
foreach($array as $k){
if(strstr($k,'txt')) $i++;
}
echo '共出现txt次数:'. $i;
if(strstr($k,'txt')) $i++;
}
echo '共出现txt次数:'. $i;
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询