PHP code example of akbv / php-skype
1. Go to this page and download the library: Download akbv/php-skype library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
akbv / php-skype example snippets
// Create a connection to Skype
$connection = new \Akbv\PhpSkype\Connection('email', 'password', __DIR__ . '/var/session');
// Get all contacts
$contacts = $connection->getContacts();
// Start one-to-one chat with a contact
$chat = $connection->chat('8:live:username');
// Send a message to the chat
$message = $chat->sendMessage('Hello World!');
bash
composer