0
我怎麼能找到打開{表}之間的所有和結束標記{/表}之間的所有 如查找用戶定義的開始和結束標記
{table} This is <strong>table</strong> {/table}
我希望所有的html標籤應在被刪除{表}標籤
我怎麼能找到打開{表}之間的所有和結束標記{/表}之間的所有 如查找用戶定義的開始和結束標記
{table} This is <strong>table</strong> {/table}
我希望所有的html標籤應在被刪除{表}標籤
preg_replace_callback('@{table}(.*?){/table}@',
function ($mat) { return strip_tags($mat[0]); }, $s);
對於像
aa {table} This is <strong>table</strong> {/table} kk
這會給
aa {table} This is table {/table} kk
$input = '{table} This is <strong>table</strong> {/table}';
$output = '';
preg_match('/\{table\}(.*?)\{\/table\}/', $input, $matches);
if (!empty($matches[1])) {
$output = stripslashes($matches[1]);
}
謝謝你解決了我的問題 – user523626 2011-04-11 11:33:47