fawno/wget

PHP 类 wget

1.0.5 2023-03-05 22:05 UTC

This package is auto-updated.

Last update: 2024-09-06 01:19:10 UTC


README

GitHub license GitHub release Packagist Packagist Downloads GitHub issues GitHub forks GitHub stars

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;