Wallogit.com
2017 © Pedro Peláez
Skype history viewer
Easy library to view your skype conversation history, (*1)
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., (*2)
Require library as a dependency using Composer:, (*3)
php composer.phar require silverslice/skype-history:dev-master, (*4)
Install SkypeHistory:, (*5)
php composer.phar install, (*6)
Look at the examples/history.php file in the installed library. You can copy it or write your own page to display
history., (*7)
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., (*8)
// 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());