// ----------------- ---------------------------------------------------- ---------
// ファイル名:Noname1.php
// 説明:共通リンクパラメータ取得正規表現テスト
// 要件:PHP4(http://www.php.net)
// Copyright(C), HonestQiao, 2005 , All Rights Reserved.
// 著者: HonestQiao (honestqiao@hotmail.com)
// パラメータの説明:
// $strSource: 標準リンクを含む HTML Web ページ
// $strResult: 処理済み結果
// 追加の指示 :
// 標準リンク、
状況に含まれるリンクを使用します
// ------------------ -------- -------------------------------------- ---
$ strSource = <<
t1 t2 a href="3 .htm">t3
t4 preg_match_all('/
(.+? )/sim', $strSource, $strResult, PREG_PATTERN_ORDER);
for($i = 0; $i {
printf("%d href=(%s) title=(%s) n", $i, $strResult[1][$i], $strResult[2][$i]);
テストデータは標準リンクに準拠しているが、ここでは処理されていない場合は、テストデータとテスト環境を教えてください。
ありがとうございます。