PHPize Online / SQLize Online  /  SQLtest Online

A A A
Share      Blog   Popular
Copy Format Clear
Copy Clear
Copy Format Clear
<?php $curl_handle=curl_init(); curl_setopt($curl_handle, CURLOPT_URL, 'https://www.boredapi.com/api/activity/'); curl_setopt($curl_handle, CURLOPT_RETURNTRANSFER, 1); $ch = curl_exec($curl_handle); curl_close($curl_handle); echo($ch); $ch = curl_init('https://www.boredapi.com/api/activity/'); curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); curl_setopt($ch, CURLOPT_HEADER, 0); $data = curl_exec($ch); curl_close($ch);
Show:  
Copy Clear