假设我的表中有一个名为“candidate”的字段,在这个字段中我有两个用逗号分隔的值....比如aron,john ....而不是两个名字可以有多个名字分隔逗号............现在我想计算这个字段中的值的数量?我怎么能这样做...这可以用爆炸函数来完成吗?
<?php
$sql_explode="select * from tb_party where party_id='3'";
$query_explode=mysql_query($sql_explode);
$k=1;
$row_explode=mysql_fetch_array($query_explode);
$a=$row_explode["service_providers"];
$pieces = explode(",", $a);
echo $pieces[0];
echo $pieces[1];
echo $pieces[2];
echo $pieces[3];
?>
这个PHP脚本只是回应了我无法理解如何计算值的数量的值....有人能建议我这个吗?
提前感谢...
答案 0 :(得分:0)
您可以使用count()
$a=$row_explode["service_providers"];
$pieces = explode(",", $a);
count($pieces); // it will display the total number of element
答案 1 :(得分:0)