<?php
class Typograf
{
static $apiUrl = 'http://www.typograf.ru/webservice/';
public static function clear($text)
{
return $text;
// $ch = curl_init(self::$apiUrl);
// curl_setopt($ch, CURLOPT_HEADER, 0);
// curl_setopt($ch, CURLOPT_POST, 1);
// curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
// curl_setopt($ch, CURLOPT_POSTFIELDS, ['text' => $text, 'chr' => 'UTF-8']);
//
// $response = curl_exec($ch);
// curl_close($ch);
//
// return $response;
}
}