Create a PHP code for telegram bot using Wikipedia api for all search
nction telegram($text){ $url = "https://en.wikipedia.org/w/api.php?action=query&format=json&prop=extracts&exsentences=1&exlimit=1&exintro=&explaintext=&titles=".urlencode($text); $ch = curl_init(); curl_setopt($ch, CURLOPT_URL, $url); curl_setopt($ch