为了账号安全,请及时绑定邮箱和手机立即绑定

PHP 获取第一个数字

PHP 获取第一个数字

PHP
Qyouu 2021-06-16 17:24:53
如何从函数中获取第一个数字?我需要检查有多少个数字?$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


查看完整回答
反对 回复 2021-06-25
?
GCT1015

TA贡献1827条经验 获得超4个赞

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


$numbers = array (8, 32, 83);

echo $numbers[0]." is first number, ";

echo count($numbers)." numbers";


查看完整回答
反对 回复 2021-06-25
  • 2 回答
  • 0 关注
  • 393 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信