猿问

PHP 获取第一个数字

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

$numbers = "1, 2, 3";

所以我的输出需要像 1 is the first number, 3 numbers


Qyouu
浏览 394回答 2
2回答

慕容708150

你可以试试下一个例子。使用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

如果使用数组而不是字符串会容易得多:$numbers = array (8, 32, 83);echo $numbers[0]." is first number, ";echo count($numbers)." numbers";
随时随地看视频慕课网APP
我要回答