定制 alleyinteractive/wp-concurrent-remote-requests 二次开发

按需修改功能、优化性能、对接业务系统,提供一站式技术支持

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

alleyinteractive/wp-concurrent-remote-requests

最新稳定版本:v1.1.1

Composer 安装命令:

composer require alleyinteractive/wp-concurrent-remote-requests

包简介

Feature plugin for concurrent HTTP remote requests

README 文档

README

Stable tag: 1.1.1

Requires at least: 5.9

Tested up to: 6.8

Requires PHP: 7.4

License: GPL v2 or later

Tags: alleyinteractive, wp-concurrent-remote-requests

Contributors: alleyinteractive, srtfisher

All Pull Request Tests

A WordPress Feature plugin for concurrent HTTP remote requests in WordPress. Adds namespaced helper functions to make concurrent remote requests. Being tracked in WordPress/wordpress-develop#3022 and https://core.trac.wordpress.org/ticket/37459.

Installation

You can install the package via composer:

composer require alleyinteractive/wp-concurrent-remote-requests

Usage

Activate the plugin in WordPress and use it like so:

// Supports an array of URLs:
\Alley\WP\Concurrent_Remote_Requests\wp_remote_get(
	[
		'https://alley.co/',
		'https://wordpress.org/',
	]
);

// Or more complex requests.
\Alley\WP\Concurrent_Remote_Requests\wp_remote_request(
	[
		[
			'https://alley.co/',
			[
				'body'   => [ ... ],
				'method' => 'POST',
			],
		],
		[
			'https://wordpress.org/',
			[
				'method' => 'DELETE',
			],
		],
	]
);

Testing

composer test

Changelog

Please see CHANGELOG for more information on what has changed recently.

Credits

License

The GNU General Public License (GPL) license. Please see License File for more information.

统计信息

  • 总下载量: 378.19k
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 4
  • 点击次数: 1
  • 依赖项目数: 2
  • 推荐数: 0

GitHub 信息

  • Stars: 4
  • Watchers: 20
  • Forks: 1
  • 开发语言: PHP

其他信息

  • 授权协议: GPL-2.0-or-later
  • 更新时间: 2022-07-26