この文字
Java コード1 2 3 4 5 6 7 8 9 10 11 12 | <!--
Code highlighting produced by Actipro CodeHighlighter (freeware)
http:
-->
$srt = <<<KK
/guang/catalog/dress?cata_id=2000000000000&word=34775&price=all&page=0§ion=hot
KK;
preg_match_all( '/cata_id=(.*)&word=(.*)&/isU' , $str , $match );
echo "<pre class=" brush:php;toolbar:false ">" ;print_r( $match ); exit ();
|
ログイン後にコピー
を取得するにはどうすればよいですか? 2000000000000
と 34775
を取得したいです------解決策- ------------------
$str = <<
/guang/catalog/dress?cata_id=2000000000000&word=34775&price=all&page=0§ion=hot
KK;
preg_match_all('/cata_id=(.* )&word=(.*)&/isU',$str,$match);