PHP code example of 4lan / dms-php-sdk

1. Go to this page and download the library: Download 4lan/dms-php-sdk 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/ */

    

4lan / dms-php-sdk example snippets




use dms;//at head
$pusher= new Pusher('your pub key','your sub key');

$data=["user"=>"wangdachui","message"=>"can you hear me?"];//这里用了php5.4的语法,如果使用5.3请用array替换。
$pusher->trigger('a_topic',json_encode($data));