alleyinteractive/wp-concurrent-remote-requests

并发HTTP远程请求功能插件

v1.0.2 2023-04-11 19:52 UTC

README

稳定标签: 0.1.0

至少需要: 5.9

测试到: 5.9

需要PHP: 7.4

许可证: GPL v2 或更高版本

标签: alleyinteractive, wp-concurrent-remote-requests

贡献者: alleyinteractive, srtfisher

Coding Standards Testing Suite

WordPress中用于并发HTTP远程请求的功能插件。添加了命名空间辅助函数以进行并发远程请求。在#2https://core.trac.wordpress.org/ticket/37459中进行跟踪。

安装

您可以通过composer安装此包

composer require alleyinteractive/wp-concurrent-remote-requests

用法

在WordPress中激活插件并按如下方式使用

// 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',
			],
		],
	]
);

测试

composer test

变更日志

请参阅CHANGELOG以获取有关最近更改的更多信息。

致谢

许可证

GNU通用公共许可证(GPL)。请参阅许可证文件以获取更多信息。