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;
それが簡単な方法です。