My string looks like this
$string_value = /hello/world/this/feels/great/
how can I trim world and feels so the output looks like ?
$string_value = /hello/this/great/
Thanks
str_replace()
<?php $string_value = '/hello/world/this/feels/great/'; $string_value = str_replace( array( 'world/', 'feels/' ), '', $string_value ); echo $string_value;
That's the simple way.
Sign up using Google
Sign up using Facebook
Sign up using Stack Exchange
By posting your answer, you agree to the privacy policy and terms of service.
tagged
asked
11 months ago
viewed
62 times
active
str_replace()– Juhana Jun 28 '12 at 7:18