Delete particular word from string

后端 未结 6 1384
名媛妹妹
名媛妹妹 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条回答
  •  梦毁少年i
    2021-02-18 20:39

    The str_ireplace() function does the same job but ignoring the case

    like the following

    
    

    output : Hello Peter!

    for more example you can see

提交回复
热议问题