gpt4 book ai didi

php - 检查字符串是否包含特定数字

转载 作者:可可西里 更新时间:2023-10-31 23:51:50 29 4
gpt4 key购买 nike

我有一个字符串

8,7,13,14,16

确定字符串中是否存在给定数字的最简单方法是什么?

$numberA = "13";
$string = "8,7,13,14,16";

if($string magic $numberA){
$result = "Yeah, that number is in there";
} else {
$result = "Sorry.";
}

寻找魔法。

最佳答案

<?php 
in_array('13', explode(',', '8,7,13,14,16'));
?>

…将返回 '13' 是否在字符串中。

只是详细说明:explode 将字符串转换为数组,在本例中将其拆分为每个“,”。然后,in_array 检查字符串 '13' 是否在结果数组中的某处。

关于php - 检查字符串是否包含特定数字,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1553462/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com