3v4l.org

run code in 300+ PHP versions simultaneously
<?php $url='http://hogedatta.com/';//取得したいURL $html=file_get_contents($url);//htmlをゴソっと取得 mb_language('Japanese');//エンコードエラー対策 $html=mb_convert_encoding($html,'utf8','auto');//文字コードをUTF-8に変換 $html=preg_replace('/(\n|\r)/','',$html);//改行コードを全部消す preg_match_all('@\<div class=\"ranking\"\>(.*?)\<\/div\>@u',$html,$matches);//配列に入れる foreach($matches[0] as $match){ //順位 preg_match('@\<span class=\"num\"\>(.*)位\<\/span\> \<span class=\"product\"\>@u',$match,$num_moto); $num=$num_moto[1]; //商品名 preg_match('@\<span class=\"product\"\>(.*)\<\/span\> \<span class=\"price\"\>@u',$match,$product_moto); $product=$product_moto[1]; //価格 preg_match('@\<span class=\"price\"\>&yen;(.*)\<\/span\>\t\<p class=\"description\"\>@u',$match,$price_moto); $price=$price_moto[1]; //商品詳細 preg_match('@\<p class=\"description\"\>(.*)\<\/p\>\<\/div\>@u',$match,$description_moto); $description=$description_moto[1]; print '順位:'.$num.'<br />'; print '商品名:'.$product.'<br />'; print '価格:'.$price.'<br />'; print '商品詳細:'.$description.'<br /><br />'; } ?>
Output for git.master, git.master_jit, rfc.property-hooks
Warning: file_get_contents(): php_network_getaddresses: getaddrinfo for hogedatta.com failed: System error in /in/DnscN on line 4 Warning: file_get_contents(http://hogedatta.com/): Failed to open stream: php_network_getaddresses: getaddrinfo for hogedatta.com failed: System error in /in/DnscN on line 4

This tab shows result from various feature-branches currently under review by the php developers. Contact me to have additional branches featured.

Active branches

Archived branches

Once feature-branches are merged or declined, they are no longer available. Their functionality (when merged) can be viewed from the main output page


preferences:
52.3 ms | 401 KiB | 8 Q