将通配符(*)添加到PHP if语句

时间:2019-03-10 02:29:26

标签: php if-statement wildcard

我正在尝试更新下面的@Injectable() export class SharedDataProvider { public couponz; this.config.Woocommerce.getAsync("coupons/").then((data) => { this.couponz = JSON.parse(data.body); }); ,在前后添加通配符,因此,如果在"$searchValue"中的任何位置找到"$searchValue"中的字符串,它将起作用。关于如何做到这一点的任何想法?

$label

感谢您的帮助!

1 个答案:

答案 0 :(得分:1)

foreach($json as $key=>$value){

        foreach($value as $item)
        {
            if(strpos($item->$label, $searchValue) !== false) 
            {
                echo $item->title.'<br>';
            }
        }    
    }