3v4l.org

run code in 300+ PHP versions simultaneously
<?php $url = 'http://www1.ptt.gov.tr/tr/interaktif/sonuc-yd.php'; $postvals = array( 'barcode' => 'CP021325078TR', 'security_code' => $capcha2 ); $resp = Request($url,$postvals); echo "<pre>"; var_dump($resp); exit; function Request($url,$params=array()){ $ch = curl_init(); $curlOpts = array( CURLOPT_URL => $url, CURLOPT_USERAGENT => 'Mozilla/5.0 (Windows NT 6.3; WOW64; rv:29.0) Gecko/20100101 Firefox/29.0', CURLOPT_SSL_VERIFYPEER => false, CURLOPT_RETURNTRANSFER => true, CURLOPT_FOLLOWLOCATION => true ); if(!empty($params)){ $curlOpts[CURLOPT_POST] = true; $curlOpts[CURLOPT_POSTFIELDS] = $params; } curl_setopt_array($ch,$curlOpts); $answer = curl_exec($ch); if (curl_error($ch)) { echo curl_error($ch); exit; } curl_close($ch); return $answer; }
Output for git.master, git.master_jit, rfc.property-hooks
Warning: Undefined variable $capcha2 in /in/Y6K8T on line 6 Fatal error: Uncaught Error: Call to undefined function curl_init() in /in/Y6K8T:12 Stack trace: #0 /in/Y6K8T(8): Request('http://www1.ptt...', Array) #1 {main} thrown in /in/Y6K8T on line 12
Process exited with code 255.

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 ms | 401 KiB | 8 Q