PHP获得第一个数字

时间:2019-05-18 19:06:27

标签: php

如何从函数中获取第一个数字?我需要检查那里有多少个数字?

$numbers = "1, 2, 3";

所以我的输出必须像1 is the first number, 3 numbers

2 个答案:

答案 0 :(得分:3)

您可以尝试下一个示例。使用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

答案 1 :(得分:0)

使用数组而不是字符串会容易得多:

$numbers = array (8, 32, 83);
echo $numbers[0]." is first number, ";
echo count($numbers)." numbers";