muffinweb/tinycurl

cURL 简化工具,便于 PHP 开发过程

v1.0.12 2022-04-17 19:49 UTC

This package is auto-updated.

Last update: 2024-09-18 01:53:37 UTC


README

tinyCURL 是简化 PHP 开发的 cURL 工具

安装

使用 composer 安装 tinyCURL。

composer require muffinweb/tinycurl

用法

//Composer Autoload
require './../vendor/autoload.php';

use Muffinweb\tinyCURL;
use Muffinweb\tinyCURLException;

try {
    $curl = new tinyCURL();
    $curl->get('https://ntv.com.tr')->render();
} catch (tinyCURLException $e){
    echo $e->getMessage();
}