|
JavaScript
|
|
|
8년 전
|
조회 8,100
|
|
기타
|
|
|
8년 전
|
조회 2,480
|
|
웹서버
|
|
|
8년 전
|
조회 2,745
|
|
기타
|
|
리자
|
8년 전
|
조회 7,372
|
|
기타
|
|
리자
|
8년 전
|
조회 5,390
|
|
웹서버
|
|
리자
|
8년 전
|
조회 6,479
|
|
PHP
|
|
|
8년 전
|
조회 6,011
|
|
jQuery
|
|
|
8년 전
|
조회 3,514
|
|
jQuery
|
|
|
8년 전
|
조회 2,438
|
|
jQuery
|
|
|
8년 전
|
조회 3,090
|
|
MySQL
|
|
리자
|
8년 전
|
조회 3,238
|
|
jQuery
|
|
|
8년 전
|
조회 2,583
|
|
jQuery
|
|
|
8년 전
|
조회 2,810
|
|
jQuery
|
|
|
8년 전
|
조회 4,553
|
|
PHP
|
|
|
8년 전
|
조회 4,468
|
|
jQuery
|
|
|
8년 전
|
조회 4,268
|
|
jQuery
|
|
|
8년 전
|
조회 2,901
|
|
jQuery
|
|
|
8년 전
|
조회 2,414
|
|
jQuery
|
|
|
8년 전
|
조회 2,552
|
|
jQuery
|
|
|
8년 전
|
조회 3,279
|
|
jQuery
|
|
|
8년 전
|
조회 3,116
|
|
jQuery
|
|
|
8년 전
|
조회 2,482
|
|
jQuery
|
|
|
8년 전
|
조회 1,800
|
|
jQuery
|
|
|
8년 전
|
조회 2,713
|
|
jQuery
|
|
|
8년 전
|
조회 2,564
|
|
jQuery
|
|
|
8년 전
|
조회 2,382
|
|
jQuery
|
|
|
8년 전
|
조회 2,319
|
|
jQuery
|
|
|
8년 전
|
조회 2,018
|
|
jQuery
|
|
|
8년 전
|
조회 2,093
|
|
jQuery
|
|
|
8년 전
|
조회 2,231
|
댓글 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]