VerySource

 找回密码
 立即注册
搜索
热搜: 活动 交友 discuz
查看: 920|回复: 5

请问一个函数

[复制链接]

1

主题

1

帖子

2.00

积分

新手上路

Rank: 1

积分
2.00
发表于 2020-1-16 12:40:01 | 显示全部楼层 |阅读模式
我PHP是菜鸟,判断一变量$a中是否包含另外一个变量中$b的字符,用什么方法可以实现,谢谢
回复

使用道具 举报

0

主题

12

帖子

12.00

积分

新手上路

Rank: 1

积分
12.00
发表于 2020-1-21 10:45:01 | 显示全部楼层
strpos

<?php
$mystring = 'abc';
$findme   = 'a';
$pos = strpos($mystring, $findme);

// Note our use of ===.  Simply == would not work as expected
// because the position of 'a' was the 0th (first) character.
if ($pos === false) {
    echo "The string '$findme' was not found in the string '$mystring'";
} else {
    echo "The string '$findme' was found in the string '$mystring'";
    echo " and exists at position $pos";
}

// We can search for the character, ignoring anything before the offset
$newstring = 'abcdef abcdef';
$pos = strpos($newstring, 'a', 1); // $pos = 7, not 0
?>
回复

使用道具 举报

0

主题

12

帖子

12.00

积分

新手上路

Rank: 1

积分
12.00
发表于 2020-1-21 12:00:01 | 显示全部楼层
strpos($b, $a);
//返回a在b中的位置,如果没有就返回FLASE
回复

使用道具 举报

0

主题

17

帖子

17.00

积分

新手上路

Rank: 1

积分
17.00
发表于 2020-1-21 23:36:01 | 显示全部楼层
以前有人问过相同的问题。解决方法就是在前面一个函数中制定一个标志变量。jinjialin说的那个程序,不错,你读懂里面的意思之后,就可以用了
回复

使用道具 举报

0

主题

2

帖子

2.00

积分

新手上路

Rank: 1

积分
2.00
发表于 2020-1-23 11:18:01 | 显示全部楼层
楼主问的是是否包含另外一个变量中$b的字符,
strpos是包含整个字符串
回复

使用道具 举报

0

主题

27

帖子

18.00

积分

新手上路

Rank: 1

积分
18.00
发表于 2020-1-28 09:18:01 | 显示全部楼层
strpos
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

Archiver|手机版|CopyRight © 2008-2023|verysource.com ( 京ICP备17048824号-1 )

快速回复 返回顶部 返回列表