123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112 |
- <?php
- /** @generate-class-entries */
- /**
- * @strict-properties
- * @not-serializable
- */
- final class CurlHandle
- {
- }
- /**
- * @strict-properties
- * @not-serializable
- */
- final class CurlMultiHandle
- {
- }
- /**
- * @strict-properties
- * @not-serializable
- */
- final class CurlShareHandle
- {
- }
- function curl_close(CurlHandle $handle): void {}
- /** @refcount 1 */
- function curl_copy_handle(CurlHandle $handle): CurlHandle|false {}
- function curl_errno(CurlHandle $handle): int {}
- /** @refcount 1 */
- function curl_error(CurlHandle $handle): string {}
- /** @refcount 1 */
- function curl_escape(CurlHandle $handle, string $string): string|false {}
- /** @refcount 1 */
- function curl_unescape(CurlHandle $handle, string $string): string|false {}
- function curl_multi_setopt(CurlMultiHandle $multi_handle, int $option, mixed $value): bool {}
- function curl_exec(CurlHandle $handle): string|bool {}
- /** @refcount 1 */
- function curl_file_create(string $filename, ?string $mime_type = null, ?string $posted_filename = null): CURLFile {}
- function curl_getinfo(CurlHandle $handle, ?int $option = null): mixed {}
- /** @refcount 1 */
- function curl_init(?string $url = null): CurlHandle|false {}
- function curl_multi_add_handle(CurlMultiHandle $multi_handle, CurlHandle $handle): int {}
- function curl_multi_close(CurlMultiHandle $multi_handle): void {}
- function curl_multi_errno(CurlMultiHandle $multi_handle): int {}
- /** @param int $still_running */
- function curl_multi_exec(CurlMultiHandle $multi_handle, &$still_running): int {}
- function curl_multi_getcontent(CurlHandle $handle): ?string {}
- /**
- * @param int $queued_messages
- * @return array<string, int|object>|false
- * @refcount 1
- */
- function curl_multi_info_read(CurlMultiHandle $multi_handle, &$queued_messages = null): array|false {}
- /** @refcount 1 */
- function curl_multi_init(): CurlMultiHandle {}
- function curl_multi_remove_handle(CurlMultiHandle $multi_handle, CurlHandle $handle): int {}
- function curl_multi_select(CurlMultiHandle $multi_handle, float $timeout = 1.0): int {}
- /** @refcount 1 */
- function curl_multi_strerror(int $error_code): ?string {}
- function curl_pause(CurlHandle $handle, int $flags): int {}
- function curl_reset(CurlHandle $handle): void {}
- function curl_setopt_array(CurlHandle $handle, array $options): bool {}
- function curl_setopt(CurlHandle $handle, int $option, mixed $value): bool {}
- function curl_share_close(CurlShareHandle $share_handle): void {}
- function curl_share_errno(CurlShareHandle $share_handle): int {}
- /** @refcount 1 */
- function curl_share_init(): CurlShareHandle {}
- function curl_share_setopt(CurlShareHandle $share_handle, int $option, mixed $value): bool {}
- /** @refcount 1 */
- function curl_share_strerror(int $error_code): ?string {}
- /** @refcount 1 */
- function curl_strerror(int $error_code): ?string {}
- /**
- * @return array<string, int|string|array>|false
- * @refcount 1
- */
- function curl_version(): array|false {}
|