您好,我想删除自定义标签中的内容,如下所示:
$string = "The sky is -start-content here-end- blue."
echo $string // results: The sky is blue.
自定义标签:-start-
和-end-
我找不到这样做的方法......有人吗?请...谢谢你。
这有效:
$row = preg_replace('#(-end-).*?(-start-)#', '$1$2', $row);
谢谢大家!这行得通。