PHP code example of feehi / standard
1. Go to this page and download the library: Download feehi/standard library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
feehi / standard example snippets
ehi\Http;
$http = new Http();
$res = $http->get("http://blog.feehi.com");
$res = $http->post("http://blog.feehi.com", ['username'=>'xxx','password'=>'yyy']);
var_dump($res);