如何从函数中获取第一个数字?我需要检查有多少个数字?$numbers = "1, 2, 3";所以我的输出需要像 1 is the first number, 3 numbers
2 回答
慕容708150
TA贡献1831条经验 获得超4个赞
你可以试试下一个例子。使用explode()来分割文本:
<?php
$numbers = "1, 2, 3";
$array = explode(', ', $numbers);
echo $array[0]." is the first number, ".count($array)." numbers";
?>
输出:
1 is the first number, 3 numbers
GCT1015
TA贡献1827条经验 获得超4个赞
如果使用数组而不是字符串会容易得多:
$numbers = array (8, 32, 83);
echo $numbers[0]." is first number, ";
echo count($numbers)." numbers";
- 2 回答
- 0 关注
- 393 浏览
添加回答
举报
0/150
提交
取消