您当前的位置: 首页 >  ar

彭世瑜

暂无认证

  • 1浏览

    0关注

    2791博文

    0收益

  • 0浏览

    0点赞

    0打赏

    0留言

私信
关注
热门博文

PHP:报错 strpos() expects parameter 1 to be string, integer given

彭世瑜 发布时间:2021-06-03 18:00:01 ,浏览量:1

PHP报错:

strpos() expects parameter 1 to be string, integer given

出错代码

public static function showArticle($id)
    {
        ArticleModel::where('id', '=', $id)
            ->update(['is_show', 0]);

    }

问题在于数组的格式写错了

->update(['is_show', 0]);

应该修改为

public static function showArticle($id)
    {
        ArticleModel::where('id', '=', $id)
            ->update(['is_show'=> 0]);

    }

参考 【踩坑系列】strpos() expects parameter 1 to be string, int given

关注
打赏
1665367115
查看更多评论
立即登录/注册

微信扫码登录

0.0859s