thewulf7 / tripadvisor
此包最新版本(1.0.4)没有提供许可证信息。
解析tripadvisor数据的Yii组件
1.0.4
2016-04-06 09:15 UTC
Requires
- php: >=5.4.0
- paquettg/php-html-parser: 1.6.8
- yiisoft/yii2: *
Requires (Dev)
- phpunit/php-invoker: >=1.1.0@stable
- phpunit/phpunit: 3.7.*
This package is not auto-updated.
Last update: 2024-09-14 19:14:41 UTC
README
安装
首先通过Composer安装此包。
{ "require": { "thewulf7/tripadvisor": "dev-master" } }
'components' => [ ... 'tripadvisor' => [ 'class' => 'thewulf7\tripadvisor\Connection' ] ... ]
用法
检索数据
$trip = \Yii::$app->get('tripadvisor'); return $trip->createCommand()->search('Moscow');
与QueryBuilder相同
$query = new \thewulf7\tripadvisor\Query(); $query ->setAction() ->addType('geo') ->setQuery('Moscow') ->setDetails(false); return $query ->createCommand() ->search();
更多示例在测试文件夹中
现有库的问题