1686817401a:1:{s:15:"testtwitter.htm";a:9:{s:8:"fileName";s:15:"testtwitter.htm";s:7:"content";s:676:"title = "testtwitter"
url = "/testtwitter"
layout = "default"
is_hidden = 0
==
<?php
function onStart()
{
    /*try{
        echo exec('curl -I https://restcountries.eu/rest/v2/all', $test);
        print_r($test);
        exit;
    }catch(Exception $e) {
     echo 'Message: ' .$e->getMessage();
     exit;
    }*/
    
    $ch = curl_init();
    $url = "https://restcountries.eu/rest/v2/all";
    curl_setopt($ch, CURLOPT_URL, $url);
    curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
    curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);     ////// i was missing this line.
    $response = curl_exec($ch);
    curl_close($ch);
    dd($response); 
}
?>
==";s:5:"mtime";i:1536831422;s:6:"markup";s:0:"";s:4:"code";s:585:"function onStart()
{
    /*try{
        echo exec('curl -I https://restcountries.eu/rest/v2/all', $test);
        print_r($test);
        exit;
    }catch(Exception $e) {
     echo 'Message: ' .$e->getMessage();
     exit;
    }*/
    
    $ch = curl_init();
    $url = "https://restcountries.eu/rest/v2/all";
    curl_setopt($ch, CURLOPT_URL, $url);
    curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
    curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);     ////// i was missing this line.
    $response = curl_exec($ch);
    curl_close($ch);
    dd($response); 
}";s:5:"title";s:11:"testtwitter";s:3:"url";s:12:"/testtwitter";s:6:"layout";s:7:"default";s:9:"is_hidden";s:1:"0";}}