feehi / standard
A library provided by wfee
0.0.4
2016-05-10 15:33 UTC
This package is auto-updated.
Last update: 2024-10-22 13:36:51 UTC
README
A library for php
##Introduction This is a php lib, contains common php tools
##Tools
- Http Request(get and post)
##Install
- Use Composer install(recommended)
1.create composer.json require feehi/standard
eg:
{
"require": {
"feehi/standard" : "*"
}
}
if chinese goes eg:
{
"require": {
"feehi/standard" : "*"
},
"repositories": [
{"type": "composer", "url": "http://packagist.phpcomposer.com"},
{"packagist": false}
]
}
2.run command "composer update"
##Usage
- Http request
<?php
require "vendor/autoload.php";
use Feehi\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);