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 29f8f59b
authored
Jan 22, 2017
by
HanSon
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
增加拜年例子
1 parent
7bfb8a70
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
39 additions
and
0 deletions
example/bainian.php
example/bainian.php
0 → 100644
View file @
29f8f59
<?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
;
$robot
=
new
Vbot
([
'tmp'
=>
__DIR__
.
'/./../tmp/'
,
'debug'
=>
true
]);
$robot
->
server
->
setCustomerHandler
(
function
()
{
$whiteList
=
[
'some remark name...'
,
'some remark name...'
];
$blackList
=
[
'some remark name...'
,
'some remark name...'
];
contact
()
->
each
(
function
(
$item
,
$username
)
use
(
$whiteList
,
$blackList
){
// 发送白名单
if
(
$item
[
'RemarkName'
]
&&
in_array
(
$item
[
'RemarkName'
],
$whiteList
)){
Text
::
send
(
$username
,
$item
[
'RemarkName'
]
.
' 新年快乐'
);
}
// 黑名单不发送
// if($item['RemarkName'] && !in_array($item['RemarkName'], $blackList)){
// Text::send($username, $item['RemarkName'] . ' 新年快乐');
// }
// 全部人发送
// if($item['RemarkName']){
// Text::send($username, $item['RemarkName'] . ' 新年快乐');
// }
});
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