Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我的字符串看起来像这样
$string_value = /hello/world/this/feels/great/
我怎样才能修剪世界和感觉所以输出看起来像?
$string_value = /hello/this/great/
谢谢
<?php $string_value = '/hello/world/this/feels/great/'; $string_value = str_replace( array( 'world/', 'feels/' ), '', $string_value ); echo $string_value;
这就是简单的方法。