This repository has been archived on 2024-08-20. You can view files and clone it, but cannot push or open issues or pull requests.
LegTeX/API.php

19 lines
422 B
PHP
Raw Permalink Normal View History

2022-12-04 20:10:04 +01:00
<?php
function rand_item($arr){
return $arr[array_rand($arr)];
}
function API($method, $data)
{
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, "https://api.telegram.org/TOKEN/". $method);
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS, http_build_query($data));
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$a= json_decode(curl_exec($ch) , true);
return $a;
}