Skip to content
Toggle navigation
Projects
Groups
Snippets
Help
Toggle navigation
This project
Loading...
Sign in
hfpp2012
/
vbot
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Settings
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit 08f0557f
authored
Mar 13, 2017
by
HanSon
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
增加群发demo
1 parent
09bbfbb4
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
32 additions
and
0 deletions
example/qunfa.php
example/qunfa.php
0 → 100644
View file @
08f0557
<?php
/**
* Created by PhpStorm.
* User: HanSon
* Date: 2016/12/7
* Time: 16:33
*/
require_once
__DIR__
.
'./../vendor/autoload.php'
;
use
Hanson\Vbot\Foundation\Vbot
;
use
Hanson\Vbot\Message\Entity\Text
;
use
Hanson\Vbot\Support\Console
;
$robot
=
new
Vbot
([
'tmp'
=>
__DIR__
.
'/./../tmp/'
,
'debug'
=>
true
]);
$robot
->
server
->
setCustomerHandler
(
function
(){
contact
()
->
each
(
function
(
$item
,
$username
){
$word
=
'新年快乐'
;
Console
::
log
(
"send to username:
$username
nickname:
{
$item
[
'NickName'
]
}
"
);
Text
::
send
(
$username
,
$word
);
sleep
(
2
);
});
exit
;
});
$robot
->
server
->
run
();
Write
Preview
Markdown
is supported
Attach a file
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to post a comment