これは、ソース コードからこの例の href を取得する if ステートメントです。
href="/toronto/2013/05/14/the-airborne-toxic-event/4296/"
ソースコードから
if ($text=preg_match('/href="([^"]*)"/', $text, $matches))
{
$output=$matches[1];
return $output;
}
そして戻る
/toronto/2013/05/14/the-airborne-toxic-event/4296/
私はどちらもまたはなしでそのURLを返そうとしています(どちら"/toronto"
が"/toronto/"
必要になるかわかりません)
それを行う正規表現を見せていただければ、本当に感謝しています。ありがとう