/** * HTTP API: WP_Http_Curl class * * @package WordPress * @subpackage HTTP * @since 4.4.0 */ /** * Core class used to integrate Curl as an HTTP transport. * * HTTP request method uses Curl extension to retrieve the url. * * Requires the Curl extension to be installed. * * @since 2.7.0 * @deprecated 6.4.0 Use WP_Http * @see WP_Http */ #[AllowDynamicProperties] class WP_Http_Curl { /** * Temporary header storage for during requests. * * @since 3.2.0 * @var string */ private $headers = ''; /** * Temporary body storage for during requests. * * @since 3.6.0 * @var string */ private $body = ''; /** * The maximum amount of data to receive from the remote server. * * @since 3.6.0 * @var int|false */ private $max_body_length = false; /** * The file resource used for streaming to file. * * @since 3.6.0 * @var resource|false */ private $stream_handle = false; /** * The total bytes written in the current request. * * @since 4.1.0 * @var int */ private $bytes_written_total = 0; /** * Send a HTTP request to a URI using cURL extension. * * @since 2.7.0 * * @param string $url The request URL. * @param string|array $args Optional. Override the defaults. * @return array|WP_Error Array containing 'headers', 'body', 'response', 'cookies', 'filename'. A WP_Error instance upon error */ public function request( $url, $args = array() ) { $defaults = array( 'method' => 'GET', 'timeout' => 5, 'redirection' => 5, 'httpversion' => '1.0', 'blocking' => true, 'headers' => array(), 'body' => null, 'cookies' => array(), 'decompress' => false, 'stream' => false, 'filename' => null, ); $parsed_args = wp_parse_args( $args, $defaults ); if ( isset( $parsed_args['headers']['User-Agent'] ) ) { $parsed_args['user-agent'] = $parsed_args['headers']['User-Agent']; unset( $parsed_args['headers']['User-Agent'] ); } elseif ( isset( $parsed_args['headers']['user-agent'] ) ) { $parsed_args['user-agent'] = $parsed_args['headers']['user-agent']; unset( $parsed_args['headers']['user-agent'] ); } // Construct Cookie: header if any cookies are set. WP_Http::buildCookieHeader( $parsed_args ); $handle = curl_init(); // cURL offers really easy proxy support. $proxy = new WP_HTTP_Proxy(); if ( $proxy->is_enabled() && $proxy->send_through_proxy( $url ) ) { curl_setopt( $handle, CURLOPT_PROXYTYPE, CURLPROXY_HTTP ); curl_setopt( $handle, CURLOPT_PROXY, $proxy->host() ); curl_setopt( $handle, CURLOPT_PROXYPORT, $proxy->port() ); if ( $proxy->use_authentication() ) { curl_setopt( $handle, CURLOPT_PROXYAUTH, CURLAUTH_ANY ); curl_setopt( $handle, CURLOPT_PROXYUSERPWD, $proxy->authentication() ); } } $is_local = isset( $parsed_args['local'] ) && $parsed_args['local']; $ssl_verify = isset( $parsed_args['sslverify'] ) && $parsed_args['sslverify']; if ( $is_local ) { /** This filter is documented in wp-includes/class-wp-http-streams.php */ $ssl_verify = apply_filters( 'https_local_ssl_verify', $ssl_verify, $url ); } elseif ( ! $is_local ) { /** This filter is documented in wp-includes/class-wp-http.php */ $ssl_verify = apply_filters( 'https_ssl_verify', $ssl_verify, $url ); } /* * CURLOPT_TIMEOUT and CURLOPT_CONNECTTIMEOUT expect integers. Have to use ceil since. * a value of 0 will allow an unlimited timeout. */ $timeout = (int) ceil( $parsed_args['timeout'] ); curl_setopt( $handle, CURLOPT_CONNECTTIMEOUT, $timeout ); curl_setopt( $handle, CURLOPT_TIMEOUT, $timeout ); curl_setopt( $handle, CURLOPT_URL, $url ); curl_setopt( $handle, CURLOPT_RETURNTRANSFER, true ); curl_setopt( $handle, CURLOPT_SSL_VERIFYHOST, ( true === $ssl_verify ) ? 2 : false ); curl_setopt( $handle, CURLOPT_SSL_VERIFYPEER, $ssl_verify ); if ( $ssl_verify ) { curl_setopt( $handle, CURLOPT_CAINFO, $parsed_args['sslcertificates'] ); } curl_setopt( $handle, CURLOPT_USERAGENT, $parsed_args['user-agent'] ); /* * The option doesn't work with safe mode or when open_basedir is set, and there's * a bug #17490 with redirected POST requests, so handle redirections outside Curl. */ curl_setopt( $handle, CURLOPT_FOLLOWLOCATION, false ); curl_setopt( $handle, CURLOPT_PROTOCOLS, CURLPROTO_HTTP | CURLPROTO_HTTPS ); switch ( $parsed_args['method'] ) { case 'HEAD': curl_setopt( $handle, CURLOPT_NOBODY, true ); break; case 'POST': curl_setopt( $handle, CURLOPT_POST, true ); curl_setopt( $handle, CURLOPT_POSTFIELDS, $parsed_args['body'] ); break; case 'PUT': curl_setopt( $handle, CURLOPT_CUSTOMREQUEST, 'PUT' ); curl_setopt( $handle, CURLOPT_POSTFIELDS, $parsed_args['body'] ); break; default: curl_setopt( $handle, CURLOPT_CUSTOMREQUEST, $parsed_args['method'] ); if ( ! is_null( $parsed_args['body'] ) ) { curl_setopt( $handle, CURLOPT_POSTFIELDS, $parsed_args['body'] ); } break; } if ( true === $parsed_args['blocking'] ) { curl_setopt( $handle, CURLOPT_HEADERFUNCTION, array( $this, 'stream_headers' ) ); curl_setopt( $handle, CURLOPT_WRITEFUNCTION, array( $this, 'stream_body' ) ); } curl_setopt( $handle, CURLOPT_HEADER, false ); if ( isset( $parsed_args['limit_response_size'] ) ) { $this->max_body_length = (int) $parsed_args['limit_response_size']; } else { $this->max_body_length = false; } // If streaming to a file open a file handle, and setup our curl streaming handler. if ( $parsed_args['stream'] ) { if ( ! WP_DEBUG ) { $this->stream_handle = @fopen( $parsed_args['filename'], 'w+' ); } else { $this->stream_handle = fopen( $parsed_args['filename'], 'w+' ); } if ( ! $this->stream_handle ) { return new WP_Error( 'http_request_failed', sprintf( /* translators: 1: fopen(), 2: File name. */ __( 'Could not open handle for %1$s to %2$s.' ), 'fopen()', $parsed_args['filename'] ) ); } } else { $this->stream_handle = false; } if ( ! empty( $parsed_args['headers'] ) ) { // cURL expects full header strings in each element. $headers = array(); foreach ( $parsed_args['headers'] as $name => $value ) { $headers[] = "{$name}: $value"; } curl_setopt( $handle, CURLOPT_HTTPHEADER, $headers ); } if ( '1.0' === $parsed_args['httpversion'] ) { curl_setopt( $handle, CURLOPT_HTTP_VERSION, CURL_HTTP_VERSION_1_0 ); } else { curl_setopt( $handle, CURLOPT_HTTP_VERSION, CURL_HTTP_VERSION_1_1 ); } /** * Fires before the cURL request is executed. * * Cookies are not currently handled by the HTTP API. This action allows * plugins to handle cookies themselves. * * @since 2.8.0 * * @param resource $handle The cURL handle returned by curl_init() (passed by reference). * @param array $parsed_args The HTTP request arguments. * @param string $url The request URL. */ do_action_ref_array( 'http_api_curl', array( &$handle, $parsed_args, $url ) ); // We don't need to return the body, so don't. Just execute request and return. if ( ! $parsed_args['blocking'] ) { curl_exec( $handle ); $curl_error = curl_error( $handle ); if ( $curl_error ) { if ( PHP_VERSION_ID < 80000 ) { // curl_close() has no effect as of PHP 8.0. curl_close( $handle ); } return new WP_Error( 'http_request_failed', $curl_error ); } if ( in_array( curl_getinfo( $handle, CURLINFO_HTTP_CODE ), array( 301, 302 ), true ) ) { if ( PHP_VERSION_ID < 80000 ) { // curl_close() has no effect as of PHP 8.0. curl_close( $handle ); } return new WP_Error( 'http_request_failed', __( 'Too many redirects.' ) ); } if ( PHP_VERSION_ID < 80000 ) { // curl_close() has no effect as of PHP 8.0. curl_close( $handle ); } return array( 'headers' => array(), 'body' => '', 'response' => array( 'code' => false, 'message' => false, ), 'cookies' => array(), ); } curl_exec( $handle ); $processed_headers = WP_Http::processHeaders( $this->headers, $url ); $body = $this->body; $bytes_written_total = $this->bytes_written_total; $this->headers = ''; $this->body = ''; $this->bytes_written_total = 0; $curl_error = curl_errno( $handle ); // If an error occurred, or, no response. if ( $curl_error || ( 0 === strlen( $body ) && empty( $processed_headers['headers'] ) ) ) { if ( CURLE_WRITE_ERROR /* 23 */ === $curl_error ) { if ( ! $this->max_body_length || $this->max_body_length !== $bytes_written_total ) { if ( $parsed_args['stream'] ) { if ( PHP_VERSION_ID < 80000 ) { // curl_close() has no effect as of PHP 8.0. curl_close( $handle ); } fclose( $this->stream_handle ); return new WP_Error( 'http_request_failed', __( 'Failed to write request to temporary file.' ) ); } else { if ( PHP_VERSION_ID < 80000 ) { // curl_close() has no effect as of PHP 8.0. curl_close( $handle ); } return new WP_Error( 'http_request_failed', curl_error( $handle ) ); } } } else { $curl_error = curl_error( $handle ); if ( $curl_error ) { if ( PHP_VERSION_ID < 80000 ) { // curl_close() has no effect as of PHP 8.0. curl_close( $handle ); } return new WP_Error( 'http_request_failed', $curl_error ); } } if ( in_array( curl_getinfo( $handle, CURLINFO_HTTP_CODE ), array( 301, 302 ), true ) ) { if ( PHP_VERSION_ID < 80000 ) { // curl_close() has no effect as of PHP 8.0. curl_close( $handle ); } return new WP_Error( 'http_request_failed', __( 'Too many redirects.' ) ); } } if ( PHP_VERSION_ID < 80000 ) { // curl_close() has no effect as of PHP 8.0. curl_close( $handle ); } if ( $parsed_args['stream'] ) { fclose( $this->stream_handle ); } $response = array( 'headers' => $processed_headers['headers'], 'body' => null, 'response' => $processed_headers['response'], 'cookies' => $processed_headers['cookies'], 'filename' => $parsed_args['filename'], ); // Handle redirects. $redirect_response = WP_Http::handle_redirects( $url, $parsed_args, $response ); if ( false !== $redirect_response ) { return $redirect_response; } if ( true === $parsed_args['decompress'] && true === WP_Http_Encoding::should_decode( $processed_headers['headers'] ) ) { $body = WP_Http_Encoding::decompress( $body ); } $response['body'] = $body; return $response; } /** * Grabs the headers of the cURL request. * * Each header is sent individually to this callback, and is appended to the `$header` property * for temporary storage. * * @since 3.2.0 * * @param resource $handle cURL handle. * @param string $headers cURL request headers. * @return int Length of the request headers. */ private function stream_headers( $handle, $headers ) { $this->headers .= $headers; return strlen( $headers ); } /** * Grabs the body of the cURL request. * * The contents of the document are passed in chunks, and are appended to the `$body` * property for temporary storage. Returning a length shorter than the length of * `$data` passed in will cause cURL to abort the request with `CURLE_WRITE_ERROR`. * * @since 3.6.0 * * @param resource $handle cURL handle. * @param string $data cURL request body. * @return int Total bytes of data written. */ private function stream_body( $handle, $data ) { $data_length = strlen( $data ); if ( $this->max_body_length && ( $this->bytes_written_total + $data_length ) > $this->max_body_length ) { $data_length = ( $this->max_body_length - $this->bytes_written_total ); $data = substr( $data, 0, $data_length ); } if ( $this->stream_handle ) { $bytes_written = fwrite( $this->stream_handle, $data ); } else { $this->body .= $data; $bytes_written = $data_length; } $this->bytes_written_total += $bytes_written; // Upon event of this function returning less than strlen( $data ) curl will error with CURLE_WRITE_ERROR. return $bytes_written; } /** * Determines whether this class can be used for retrieving a URL. * * @since 2.7.0 * * @param array $args Optional. Array of request arguments. Default empty array. * @return bool False means this class can not be used, true means it can. */ public static function test( $args = array() ) { if ( ! function_exists( 'curl_init' ) || ! function_exists( 'curl_exec' ) ) { return false; } $is_ssl = isset( $args['ssl'] ) && $args['ssl']; if ( $is_ssl ) { $curl_version = curl_version(); // Check whether this cURL version support SSL requests. if ( ! ( CURL_VERSION_SSL & $curl_version['features'] ) ) { return false; } } /** * Filters whether cURL can be used as a transport for retrieving a URL. * * @since 2.7.0 * * @param bool $use_class Whether the class can be used. Default true. * @param array $args An array of request arguments. */ return apply_filters( 'use_curl_transport', true, $args ); } } दिलचस्प चुनौतियों और ढेर सारे पुरस्कारों के साथ, चिकन रोड गेम में अपनी किस्मत आजमाएं और हर कदम पर मज – Shweta Poddar Weddings Photography

दिलचस्प चुनौतियों और ढेर सारे पुरस्कारों के साथ, चिकन रोड गेम में अपनी किस्मत आजमाएं और हर कदम पर मज़ा करें!

आजकल ऑनलाइन मनोरंजन की दुनिया में, ‘real chicken road game‘ एक बहुत ही लोकप्रिय खेल बन गया है। यह गेम न केवल रोमांचक है, बल्कि इसमें जीतने के कई अवसर भी हैं। यह उन लोगों के लिए एक शानदार विकल्प है जो घर बैठे मनोरंजन का आनंद लेना चाहते हैं और अपनी किस्मत आजमाना चाहते हैं। यह गेम अपनी सादगी और आकर्षकता के कारण सभी उम्र के लोगों के बीच तेजी से लोकप्रिय हो रहा है।

इस गेम की लोकप्रियता का मुख्य कारण इसकी अनूठी अवधारणा और सरल नियम हैं। खिलाड़ी को एक मुर्गी को सड़क के पार सुरक्षित रूप से ले जाना होता है, लेकिन रास्ते में कई बाधाएं आती हैं जिनसे उसे बचना होता है। यह गेम देखने में जितना आसान लगता है, खेलने में उतना ही चुनौतीपूर्ण होता है।

चिकन रोड गेम की बुनियादी बातें

चिकन रोड गेम एक ऐसा गेम है जिसमें एक मुर्गी को सड़क के पार ले जाना होता है। खिलाड़ी को विभिन्न बाधाओं, जैसे कि कारों और अन्य वाहनों से बचना होता है। गेम को जीतने के लिए, मुर्गी को सड़क के दूसरी तरफ सुरक्षित रूप से पहुंचाना होगा। यह गेम कौशल और रणनीति का एक मिश्रण है, और खिलाड़ियों को अपनी प्रतिक्रिया गति और निर्णय लेने की क्षमता का उपयोग करना होता है।

चिकन रोड गेम के नियम

चिकन रोड गेम के नियम बहुत सरल हैं। खिलाड़ी को बस मुर्गी को सड़क के पार ले जाना होता है। खिलाड़ी मुर्गी को बाएं और दाएं दिशाओं में ले जा सकता है, और उसे कूदने और अन्य बाधाओं से बचने के लिए भी नियंत्रित कर सकता है। गेम को जीतने के लिए, मुर्गी को सड़क के दूसरी तरफ सुरक्षित रूप से पहुंचाना होगा। यह गेम खिलाड़ियों को मनोरंजन के साथ-साथ मानसिक चुनौती भी प्रदान करता है। इसमें, खिलाड़ी को तेजी से सोचने और प्रतिक्रिया देने की आवश्यकता होती है, जो उसकी मानसिक क्षमता को विकसित करने में मदद करता है।

गेम खेलने के दौरान खिलाड़ियों को विभिन्न प्रकार की बाधाओं का सामना करना पड़ता है, जैसे कि तेज रफ्तार गाड़ियाँ और अन्य वाहन। इन बाधाओं से बचने के लिए खिलाड़ियों को अपनी रणनीति और कौशल का उपयोग करना होता है। यदि मुर्गी किसी बाधा से टकरा जाती है, तो खिलाड़ी हार जाता है और उसे गेम को फिर से शुरू करना होता है।

चिकन रोड गेम के लाभ

चिकन रोड गेम खेलने के कई लाभ हैं। यह गेम खिलाड़ियों को मनोरंजन के साथ-साथ मानसिक चुनौती भी प्रदान करता है। यह गेम खिलाड़ियों की प्रतिक्रिया गति और निर्णय लेने की क्षमता को विकसित करने में मदद करता है। इसके अलावा, यह गेम खिलाड़ियों को तनाव से राहत दिलाने और मनोरंजन प्रदान करने में भी मदद करता है। इस गेम के माध्यम से खिलाड़ी अपनी एकाग्रता और धैर्य में भी सुधार कर सकते हैं, जो उनके दैनिक जीवन में भी उपयोगी साबित हो सकते हैं।

चिकन रोड गेम कैसे खेलें

चिकन रोड गेम खेलना बहुत आसान है। खिलाड़ी को बस अपने मोबाइल डिवाइस या कंप्यूटर पर गेम डाउनलोड करना होता है। गेम डाउनलोड करने के बाद, खिलाड़ी गेम को खोल सकता है और खेलना शुरू कर सकता है। गेम में खिलाड़ी को मुर्गी को सड़क के पार ले जाना होता है। खिलाड़ी मुर्गी को बाएं और दाएं दिशाओं में ले जा सकता है, और उसे कूदने और अन्य बाधाओं से बचने के लिए भी नियंत्रित कर सकता है।

गेम के लिए टिप्स और ट्रिक्स

चिकन रोड गेम में सफलता पाने के लिए, खिलाड़ियों को कुछ टिप्स और ट्रिक्स का पालन करना चाहिए। सबसे पहले, खिलाड़ियों को अपनी प्रतिक्रिया गति को तेज करना चाहिए। दूसरा, खिलाड़ियों को अपनी रणनीति का उपयोग करना चाहिए और बाधाओं से बचने के लिए सही समय पर कूदना चाहिए। तीसरा, खिलाड़ियों को धैर्य रखना चाहिए और हार नहीं माननी चाहिए। इन टिप्स और ट्रिक्स का पालन करके, खिलाड़ी चिकन रोड गेम में सफलता प्राप्त कर सकते हैं।

यहाँ चिकन रोड गेम खेलने के कुछ अतिरिक्त सुझाव दिए गए हैं:

  • शुरू में धीरे-धीरे खेलें और गेम के नियमों को समझें।
  • बाधाओं से बचने के लिए सही समय पर कूदें।
  • अपनी प्रतिक्रिया गति को तेज करें।
  • धैर्य रखें और हार नहीं मानें।

चिकन रोड गेम के विभिन्न संस्करण

चिकन रोड गेम के कई विभिन्न संस्करण उपलब्ध हैं। कुछ संस्करण मुफ्त में खेलने के लिए उपलब्ध हैं, जबकि कुछ संस्करणों को खरीदने की आवश्यकता होती है। खिलाड़ी अपनी पसंद और आवश्यकता के अनुसार किसी भी संस्करण को चुन सकते हैं। गेम के विभिन्न संस्करणों में ग्राफिक्स, गेमप्ले और सुविधाओं में अंतर हो सकता है।

मोबाइल और कंप्यूटर संस्करण

चिकन रोड गेम मोबाइल और कंप्यूटर दोनों प्लेटफार्मों पर उपलब्ध है। मोबाइल संस्करण खिलाड़ियों को अपने स्मार्टफोन या टैबलेट पर गेम खेलने की अनुमति देता है, जबकि कंप्यूटर संस्करण खिलाड़ियों को अपने कंप्यूटर पर गेम खेलने की अनुमति देता है। दोनों संस्करणों में गेमप्ले समान होता है, लेकिन ग्राफिक्स और नियंत्रण में थोड़ा अंतर हो सकता है। मोबाइल संस्करण पोर्टेबल होता है और खिलाड़ी इसे कहीं भी खेल सकते हैं, जबकि कंप्यूटर संस्करण बड़े स्क्रीन और बेहतर नियंत्रण प्रदान करता है।

यहाँ चिकन रोड गेम के कुछ लोकप्रिय संस्करणों की तुलना दी गई है:

संस्करण प्लेटफॉर्म मूल्य विशेषताएं
क्लासिक चिकन रोड गेम मोबाइल, कंप्यूटर मुफ्त सरल गेमप्ले, बुनियादी ग्राफिक्स
सुपर चिकन रोड गेम मोबाइल भुगतान किया गया उन्नत ग्राफिक्स, अतिरिक्त स्तर, विशेष शक्तियां
चिकन रोड एडवेंचर कंप्यूटर भुगतान किया गया रोमांचक कहानी, जटिल स्तर, मल्टीप्लेयर मोड

चिकन रोड गेम के भविष्य की संभावनाएं

चिकन रोड गेम का भविष्य बहुत उज्ज्वल है। इस गेम की लोकप्रियता लगातार बढ़ रही है, और नए संस्करण और सुविधाएं लगातार जारी की जा रही हैं। आने वाले समय में, हम चिकन रोड गेम को और भी अधिक उन्नत ग्राफिक्स, गेमप्ले और सुविधाओं के साथ देख सकते हैं। इस गेम में वर्चुअल रियलिटी और ऑगमेंटेड रियलिटी जैसी नई तकनीकों को शामिल करने की भी संभावना है, जो खिलाड़ियों को और भी अधिक इमर्सिव अनुभव प्रदान करेगी।

नई तकनीकों का प्रभाव

वर्चुअल रियलिटी और ऑगमेंटेड रियलिटी जैसी नई तकनीकों का चिकन रोड गेम पर बहुत बड़ा प्रभाव पड़ेगा। वर्चुअल रियलिटी खिलाड़ियों को गेम के अंदर एक काल्पनिक दुनिया में ले जाएगी, जबकि ऑगमेंटेड रियलिटी गेम को वास्तविक दुनिया के साथ जोड़ देगी। इन तकनीकों के माध्यम से, खिलाड़ी चिकन रोड गेम को और भी अधिक रोमांचक और आकर्षक तरीके से खेल सकेंगे। यह गेम मनोरंजन के नए आयामों को खोलेगा और खिलाड़ियों को एक अद्वितीय अनुभव प्रदान करेगा।

चिकन रोड गेम में आगे आने वाली कुछ संभावित विशेषताएं:

  1. मल्टीप्लेयर मोड: खिलाड़ी दोस्तों और अन्य खिलाड़ियों के साथ प्रतिस्पर्धा कर सकते हैं।
  2. कस्टमाइज़ेशन विकल्प: खिलाड़ी अपने मुर्गी को विभिन्न प्रकार के परिधान और एक्सेसरीज़ के साथ अनुकूलित कर सकते हैं।
  3. नई बाधाएं और चुनौतियां: गेम में नई बाधाएं और चुनौतियां जोड़ी जाएंगी जो खिलाड़ियों को व्यस्त रखेंगी।
  4. सोशल मीडिया एकीकरण: खिलाड़ी अपने दोस्तों के साथ अपने स्कोर और उपलब्धियों को साझा कर सकते हैं।

अंत में, ‘real chicken road game’ एक मनोरंजक और रोमांचक गेम है जो सभी उम्र के लोगों के लिए उपयुक्त है। यह गेम कौशल, रणनीति और त्वरित निर्णय लेने की क्षमता को विकसित करने में मदद करता है। यदि आप मनोरंजन और चुनौती का मिश्रण चाहते हैं, तो चिकन रोड गेम आपके लिए एक बेहतरीन विकल्प है।

Uncategorized