3v4l.org

run code in 300+ PHP versions simultaneously
<?php $html = grab_content('http://www.metano-logistics.com/metano_olm/assets/view_asset.php?id=17876&page_mode=2009'); var_dump($html); function grab_content($url){ $ch = curl_init(); $timeout = 50; curl_setopt($ch, CURLOPT_URL, $url); curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, $timeout); $data = curl_exec($ch); curl_close($ch); print_r($data); return $data; }

preferences:
48.61 ms | 402 KiB | 5 Q