| 1234567891011121314151617181920212223242526272829 |
- <?php
- /**
- * @link http://www.yiiframework.com/
- * @copyright Copyright (c) 2008 Yii Software LLC
- * @license http://www.yiiframework.com/license/
- */
- namespace yii\httpclient;
- use yii\base\Object;
- /**
- * UrlEncodedParser parses HTTP message content as 'application/x-www-form-urlencoded'.
- *
- * @author Paul Klimov <klimov.paul@gmail.com>
- * @since 2.0
- */
- class UrlEncodedParser extends Object implements ParserInterface
- {
- /**
- * @inheritdoc
- */
- public function parse(Response $response)
- {
- $data = [];
- parse_str($response->getContent(), $data);
- return $data;
- }
- }
|