BaseT/plugins/9998_pingresponse.php

10 lines
188 B
PHP
Raw Permalink Normal View History

2013-09-28 19:14:52 +00:00
<?php
$_plugins['oninput'][] = function($id, $input) use (&$_write)
{
if (substr($input, 0, 4) === 'PING')
{
$_write($id, 'PONG :' . substr($input, 6) . "\r\n");
}
};