多应用+插件架构,代码干净,二开方便,首家独创一键云编译技术,文档视频完善,免费商用码云13.8K 广告
# C.42 HttpRequestTask This task will make an HTTP request to the provided URL and match the response against the provided regular expression. If an regular expression is provided and doesn't match the build will fail. You need an installed version of [HTTP\_Request2](http://pear.php.net/package/HTTP_Request2) to use this task. Table C.45:聽Attributes NameTypeDescriptionDefaultRequired`url``String`The request URLn/aYes`responseRegex``String`The regular expression for matching the responsen/aNo`authUser``String`The authentication user namen/aNo`authPassword``String`The authentication passwordn/aNo`authScheme``String`The authentication schemebasicNo`verbose``Boolean`Whether to enable detailed logging`false`No`observerEvents``String`Comma-separated list of events to log when `verbose` is set to `true`connect, sentHeaders, sentBodyPart, receivedHeaders, receivedBody, disconnectNo`method``String`The HTTP method of the request, currently only GET or POST supported`GET`No C.42.1 Example `<http-request url="http://my-production.example.com/check-deployment.php"/>`Just perform a HTTP request to the given URL. ``` <http-request url="http://my-production.example.com/check-deployment.php" responseRegex="/Heartbeat/" verbose"true" observerEvents="connect, disconnect"/> ``` Perform a HTTP request to the given URL and matching the response against the given regex pattern. Enable detailed logging and log only the specified events. ``` <http-request url="http://my-production.example.com/check-deployment.php"> <config name="adapter" value="HTTP_Request2_Adapter_Curl"/> <header name="user-agent" value="Phing HttpRequestTask"/> </http-request> ``` Perform a HTTP request to the given URL. Setting request adapter to curl instead of socket. Setting an additional header. ``` <http-request url="http://my-production.example.com/check-deployment.php" verbose"true" method="POST"> <postparameter name="param1" value="value1" /> <postparameter name="param2" value="value2" /> </http-request> ``` Perform an HTTP POST request to the given URL. Setting POST request parameters to emulate form submission. C.42.2 Supported Nested Tags - `config` Holds additional config data. See [HTTP\_Request2 documentation](http://pear.php.net/manual/en/package.http.http-request2.config.php) for supported values. Table C.46:聽Attributes NameTypeDescriptionDefaultRequired`name``String`Config parameter namen/aYes`value`MixedConfig valuen/aYes - `header` Holds additional header `name` and `value`. Table C.47:聽Attributes NameTypeDescriptionDefaultRequired`name``String`Header namen/aYes`value``String`Header valuen/aYes - `postparameter` Used when performing a POST request. Contains `name` and `value` of a form field. Table C.48:聽Attributes NameTypeDescriptionDefaultRequired`name``String`Field namen/aYes`value``String`Field valuen/aYes C.42.3 Global configuration In addition to configuring a particular instance of `HTTP_Request2` via nested `<config>` tags it is also possible to set default configuration values for `HttpGetTask` / `HttpRequestTask` by setting `phing.http.*` properties. ``` <property name="phing.http.proxy" value="socks5://localhost:1080/"/> <!-- This request will go through the default proxy --> <http-request url="http://example.com/foo"/> <http-request url="http://example.org/restricted" dir="./"> <!-- This proxy will be used instead of the default one --> <config name="proxy" value="http://foo:bar@proxy.example.org:3128/"/> </http-request> ```