/ Published in: Other
Expand |
Embed | Plain Text
// pbItemで使用 %5p%を <a href="[url]5[tail]">5</a> に置き換える function autoLink($tag, $url, $tail = null, $max_page = 10){ for ($i=1; $i <= $max_page; $i++) { $link = "<a href='".$url.$i.$tail."'>".$i."</a>"; $tag = preg_replace("/%".$i."p%/", $link, $tag); } // マッチしなかったページは消去される $tag = preg_replace("/%[0-9]+p%/", "", $tag); //preg_match("/%(.*?)%/",$tag,$matches); return $tag; }
You need to login to post a comment.
