線上書籍

Home

[991]PHP網站開發 進階應用技巧2

<?php
$output="這是[p]中文[/p]字";
preg_match("/\[p\](.*)\[\/p\]/s", $output, $match);
echo $match[1];
?>