silverslice/skype-history
Composer 安装命令:
composer require silverslice/skype-history
包简介
Skype history viewer
关键字:
README 文档
README
Easy library to view your skype conversation history
What for?
After update skype in Ubuntu your can find that all your skype conversation history is empty. Your can try to use this small library to get unavailable history.
Installation
-
Require library as a dependency using Composer:
php composer.phar require silverslice/skype-history:dev-master -
Install SkypeHistory:
php composer.phar install
Usage
Look at the examples/history.php file in the installed library. You can copy it or write your own page to display
history.
All you need is to find skype's main.db file in ~/.Skype/your_login/ directory, place it in your project directory
and open page in browser.
Example of usage
// require composer autoload file require __DIR__ . '/vendor/autoload.php'; use Silverslice\SkypeHistory\Reader; // create reader passing the path to main.db skype file $reader = new Reader('data/main.db'); // get all contacts having messages in history $contacts = $reader->getActiveContacts(); // get all conversation history for contact with login 'silver_slice' for last 1 year $messages = $reader->getHistory('silver_slice', strtotime('-1 year'), time());
统计信息
- 总下载量: 25
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 1
- 点击次数: 0
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2015-01-26