我是 python 的 php 新手。在 php 中,我想在 python 中执行类似“if example in data”之类的操作,我可以简单地做我想做的事情
string = "this is an example"
if "example" in string:
return True
else:
return False`
有没有一种简单的方法可以在 php 中执行此操作?我查看了 foreach 语句以及 php 中的 if 语句,但我找不到任何示例。任何简单或“干净”的方式都会很好。其次,如果有办法从 print_r 数组中获得特定结果。