Delete particular word from string

后端 未结 6 1389
名媛妹妹
名媛妹妹 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:33

    $s = 'Posted On jan 3rd By Some Dude';
    
    
    echo strstr($s, 'By', true);
    

    This is to remove particular string from a string.

    The result will be like this

     'Posted On jan 3rd'
    

提交回复
热议问题