lgg / vk-to-telegram-bot

Bot for auto-reposting posts from VK to Telegram channel
129 stars 21 forks source link

file_get_contents_curl #55

Open lev-savranskiy opened 4 years ago

lev-savranskiy commented 4 years ago

for hosting without extension=openssl.so -> use this function instead of _file_getcontents in class VkApi

_function file_get_contents_curl($url) { $ch = curl_init(); curl_setopt($ch, CURLOPT_HEADER, 0); curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); curl_setopt($ch, CURLOPT_URL, $url); $data = curl_exec($ch); curlclose($ch); return $data; }