phpgt / curl
cURL对象包装器。
v3.1.1
2023-04-29 17:28 UTC
Requires
- php: >=8.1
- ext-curl: *
- ext-json: *
- phpgt/json: ^1.2
Requires (Dev)
- phpmd/phpmd: ^2.13
- phpstan/phpstan: ^1.9
- phpunit/phpunit: ^10.0
- squizlabs/php_codesniffer: ^3.7
This package is auto-updated.
Last update: 2024-09-12 06:44:10 UTC
README
此库使用对象将PHP的cURL扩展函数包装起来,以提高代码的可读性和可测试性。
为什么?我们想为PHP.Gt/Fetch(我们使用cURL创建异步HTTP调用并使用承诺的PHP实现Web的fetch API)提供一个面向对象的基础。
示例用法:从远程源获取JSON对象
在处理HTTP调用时,与JSON一起工作是非常常见的。此库通过缓冲exec()调用的输出,然后使用output()或outputJson()轻松检索,从而消除了大量样板代码的需要。
使用PHP.Gt/Curl的示例
$curl = new Curl("https://catfact.ninja/fact"); $curl->exec(); $json = $curl->outputJson(); echo "Here's a cat fact: {$json->getString("fact")}"; echo PHP_EOL; echo "The fact's length is {$json->getInt("length")} characters."; echo PHP_EOL;
使用PHP的本地curl_*
函数的相同示例
// Using native functionality to achieve the same: $ch = curl_init(); curl_setopt($ch, CURLOPT_URL, "https://catfact.ninja/fact"); curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); $result = curl_exec($ch); if(false === $result) { die("CURL error: " . curl_error($ch)); } $json = json_decode($result); if(is_null($json)) { die("JSON decoding error: " . json_last_error_msg()); } // Note: No type checks are made on the `fact` and `length` properties here. echo "Here's a cat fact: {$json->fact}"; echo PHP_EOL; echo "The fact's length is {$json->length} characters."; echo PHP_EOL;