实现很简单,直接贴代码:
<?php
$content = '##测试# 有空格#测试内容#没有空格#剩余内容';
// 去除 井号中的 空格
$content = preg_replace_callback('/#.*?#/',
2017-06-06