You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
285 B
16 lines
285 B
|
3 years ago
|
<?php
|
||
|
|
//鍒濆?鍖
|
||
|
|
require_once('../lib/client.php');
|
||
|
|
|
||
|
|
$url = 'http://127.0.0.1:8080/api';
|
||
|
|
$key = 'xkg3ydnm';
|
||
|
|
$secret = '56dygmyhrfuhuwrdst3c';
|
||
|
|
|
||
|
|
$c = new prism_client($url, $key, $secret);
|
||
|
|
|
||
|
|
//瀹炴椂鎵撳嵃log
|
||
|
|
$c->set_logger(function($message){
|
||
|
|
echo $message;
|
||
|
|
flush();
|
||
|
|
});
|