Delete particular word from string

后端 未结 6 1388
名媛妹妹
名媛妹妹 2021-02-18 20:02

I\'m extracting twitter user\'s profile image through JSON. For this my code is:

$x->profile_image_url

that returns the url of the profile i

6条回答
  •  离开以前
    2021-02-18 20:34

    Php str_replace.

    str_replace('_normal', '', $var)
    

    What this does is to replace '_normal' with '' (nothing) in the variable $var. Or take a look at preg_replace if you need the power of regular expressions.

提交回复
热议问题