feehi/standard

A library provided by wfee

0.0.4 2016-05-10 15:33 UTC

This package is auto-updated.

Last update: 2024-03-22 12:14:11 UTC


README

A library for php

##Introduction This is a php lib, contains common php tools

##Tools

  1. Http Request(get and post)

##Install

  1. 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"

composer-install-feehi-standard

##Usage

  1. 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);

feehi-standard-http-eg