ganz00 / phpUtils

some php class that can be useful for your daily work

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

phpUtils

some php class that can be useful for your daily work

exemple :

RestClient = new RestClient();
headers = array("Content-Type: application/json;");
RestClient->addOption(CURLOPT_HTTPAUTH/*107*/, /*CURLAUTH_BASIC*/1);
RestClient->addOption(CURLOPT_USERPWD/*10005*/, "user:password");
$result = RestClient->setUrl("www.exemple.com")->getMethod($headers);

return ($result->codeRetour == 200 ) ? echo $result->datas : echo "" ;

About

some php class that can be useful for your daily work


Languages

Language:PHP 100.0%