3v4l.org

run code in 300+ PHP versions simultaneously
<?php $url="http://kakaku.com/camera/camera-lens/itemlist.aspx?pdf_Spec103=13";//取得したい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('@\<a class=\"ckitanker\"\>(.*)\<\/a\> \<span class=\"price\"\>@u',$match,$product_moto); $product=$product_moto[1]; print '商品名:'.$product.'<br />'; } ?>
Output for git.master, git.master_jit, rfc.property-hooks
Warning: file_get_contents(): php_network_getaddresses: getaddrinfo for kakaku.com failed: System error in /in/QNMUD on line 4 Warning: file_get_contents(http://kakaku.com/camera/camera-lens/itemlist.aspx?pdf_Spec103=13): Failed to open stream: php_network_getaddresses: getaddrinfo for kakaku.com failed: System error in /in/QNMUD 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.23 ms | 402 KiB | 8 Q