|
jQuery
|
|
|
18-01-25
|
조회 4,538
|
|
JavaScript
|
|
|
18-01-24
|
조회 8,562
|
|
기타
|
|
|
18-01-24
|
조회 2,818
|
|
웹서버
|
|
|
18-01-24
|
조회 3,076
|
|
기타
|
|
리자
|
18-01-22
|
조회 7,866
|
|
기타
|
|
리자
|
18-01-22
|
조회 5,790
|
|
웹서버
|
|
리자
|
18-01-18
|
조회 6,891
|
|
PHP
|
|
|
18-01-12
|
조회 6,399
|
|
jQuery
|
|
|
18-01-10
|
조회 3,897
|
|
jQuery
|
|
|
18-01-10
|
조회 2,787
|
|
jQuery
|
|
|
18-01-10
|
조회 3,440
|
|
MySQL
|
|
리자
|
18-01-08
|
조회 3,600
|
|
jQuery
|
|
|
18-01-08
|
조회 2,931
|
|
jQuery
|
|
|
18-01-08
|
조회 3,164
|
|
jQuery
|
|
|
18-01-08
|
조회 4,884
|
|
PHP
|
|
|
18-01-05
|
조회 4,822
|
|
jQuery
|
|
|
18-01-04
|
조회 4,624
|
|
jQuery
|
|
|
18-01-04
|
조회 3,250
|
|
jQuery
|
|
|
18-01-04
|
조회 2,694
|
|
jQuery
|
|
|
17-12-06
|
조회 2,876
|
|
jQuery
|
|
|
17-12-06
|
조회 3,644
|
|
jQuery
|
|
|
17-12-06
|
조회 3,468
|
|
jQuery
|
|
|
17-12-04
|
조회 2,846
|
|
jQuery
|
|
|
17-12-04
|
조회 2,108
|
|
jQuery
|
|
|
17-12-04
|
조회 3,045
|
|
jQuery
|
|
|
17-12-04
|
조회 2,911
|
|
jQuery
|
|
|
17-11-25
|
조회 2,718
|
|
jQuery
|
|
|
17-11-25
|
조회 2,657
|
|
jQuery
|
|
|
17-11-25
|
조회 2,341
|
|
jQuery
|
|
|
17-11-24
|
조회 2,396
|
댓글 1개
대용입니다. ㅎㅎㅎ
새로만들기 귀찮아서 ㅋㅋㅋ
# 사용방법
[code]
<?php
// 클래스 호출
include_once('./rocketchat.class.php');
// 클래스 생성(서버접속)
$rcl = new RCLog('https://로캣쳇주소/', '아이디', 비밀번호', '비공개그룹 아이디');
// 메시지 발송
$Send = $rcl->send("```php
<?php
phpinfo();
");
/*
send(메시지, 별칭, 이모지(:grinning:))
예> $Send = $rcl->send(print_r($_REQUEST, true), '[전달된 REQUEST]', ':regional_indicator_r:');
*/
// 메시지 발송결과
echo ($Send === true?'성공':'실패');
echo '<hr>';
// 해당 비공개 그룹의 메시지(기본 20개 출력)
$rcl->print_r($rcl->GetMsg());
// 해당 비공개 그룹의 메시지 100개 출력
$rcl->print_r($rcl->GetMsg(100));
[/code]