reeska/semrush
Composer 安装命令:
composer require reeska/semrush
包简介
Semrush API PHP client
关键字:
README 文档
README
Library to easily querying Semrush API. All web services are not implemented yet.
Implemented Features
- Domain Overview (All databases)
- Domain Organic Search Keywords
- Domain Overview (History)
Download
You can use composer to retrieve this library like below (recommanded method) :
$ php composer.phar require "reeska/semrush" "dev-master"
Packagist URL : https://packagist.org/packages/reeska/semrush
Usage
Example : you want to get all keywords and their positions for the website github.com :
require_once __DIR__.'/vendor/autoload.php'; use Reeska\Semrush\SemrushAPI; $semrush = new SemrushAPI('api_key'); $results = $semrush->organicSearchKeywords('github.com'); foreach($results as $result) { echo 'Keyword : '. $result->keyword(); echo 'Position : '. $result->position(); }
See Semrush documentation here : http://www.semrush.com/api-documentation/
统计信息
- 总下载量: 400
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 3
- 点击次数: 0
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2015-03-02