fawno / wget
PHP 类 wget
1.0.5
2023-03-05 22:05 UTC
Requires
- php: >=5.6.0
- ext-curl: *
- ext-openssl: *
README
wget
PHP 类 wget
需求
wget 需要 PHP 版本 5.6 或更高,并启用 openssl 和 curl 扩展。
如何安装
使用 composer.phar
安装。
将 fawno/wget
添加到项目的需求中
php composer.phar require "fawno/wget"
在脚本中加载类
<?php require 'vendor/autoload.php'; use Fawno\wget\wget;
手动安装
下载 wget.php 并将其保存到可访问的路径中。
在脚本中加载 wget.php
<?php require 'wget.php'; use Fawno\wget\wget;