|
JavaScript
|
|
|
8년 전
|
조회 8,159
|
|
기타
|
|
|
8년 전
|
조회 2,506
|
|
웹서버
|
|
|
8년 전
|
조회 2,764
|
|
기타
|
|
리자
|
8년 전
|
조회 7,408
|
|
기타
|
|
리자
|
8년 전
|
조회 5,414
|
|
웹서버
|
|
리자
|
8년 전
|
조회 6,507
|
|
PHP
|
|
|
8년 전
|
조회 6,048
|
|
jQuery
|
|
|
8년 전
|
조회 3,549
|
|
jQuery
|
|
|
8년 전
|
조회 2,464
|
|
jQuery
|
|
|
8년 전
|
조회 3,113
|
|
MySQL
|
|
리자
|
8년 전
|
조회 3,263
|
|
jQuery
|
|
|
8년 전
|
조회 2,609
|
|
jQuery
|
|
|
8년 전
|
조회 2,832
|
|
jQuery
|
|
|
8년 전
|
조회 4,568
|
|
PHP
|
|
|
8년 전
|
조회 4,494
|
|
jQuery
|
|
|
8년 전
|
조회 4,290
|
|
jQuery
|
|
|
8년 전
|
조회 2,927
|
|
jQuery
|
|
|
8년 전
|
조회 2,436
|
|
jQuery
|
|
|
8년 전
|
조회 2,571
|
|
jQuery
|
|
|
8년 전
|
조회 3,304
|
|
jQuery
|
|
|
8년 전
|
조회 3,140
|
|
jQuery
|
|
|
8년 전
|
조회 2,500
|
|
jQuery
|
|
|
8년 전
|
조회 1,820
|
|
jQuery
|
|
|
8년 전
|
조회 2,730
|
|
jQuery
|
|
|
8년 전
|
조회 2,586
|
|
jQuery
|
|
|
8년 전
|
조회 2,405
|
|
jQuery
|
|
|
8년 전
|
조회 2,348
|
|
jQuery
|
|
|
8년 전
|
조회 2,044
|
|
jQuery
|
|
|
8년 전
|
조회 2,111
|
|
jQuery
|
|
|
8년 전
|
조회 2,258
|
댓글 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]