PHP docurl

PHOTO EMBED

Wed Jun 22 2022 09:18:15 GMT+0000 (Coordinated Universal Time)

Saved by @nladev #php

public static function docurl($url, $json, $post = true)
    {
        $ch = curl_init($url);
        curl_setopt($ch, CURLOPT_POST, $post);
        curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
        curl_setopt($ch, CURLOPT_TIMEOUT, 30);
        curl_setopt($ch, CURLOPT_POSTFIELDS, $json);
        curl_setopt($ch, CURLOPT_HTTPHEADER, array('Content-Type: application/json'));
        $res = curl_exec($ch);
        curl_close($ch);
        return json_decode($res, true);
    }
content_copyCOPY