如何从变量PHP中删除一些字符

时间:2012-06-28 07:16:53

标签: php html

我的字符串看起来像这样

$string_value = /hello/world/this/feels/great/

我如何修剪世界并感觉输出看起来像?

$string_value = /hello/this/great/

由于

1 个答案:

答案 0 :(得分:5)

<?php
$string_value = '/hello/world/this/feels/great/';
$string_value = str_replace( array( 'world/', 'feels/' ), '', $string_value );

echo $string_value;

这是一种简单的方法。