/
home
/
techb158
/
exp.abdallabala.com
/
vendor
/
sabre
/
event
/
examples
/
/home/techb158/exp.abdallabala.com/vendor/sabre/event/examples
mkdir
upload
Name
Size
Mode
Actions
promise.php
1934
0644
edit
dl
rm
tail.php
567
0644
edit
dl
rm
Edit:
/home/techb158/exp.abdallabala.com/vendor/sabre/event/examples/tail.php
(567B)
#!/usr/bin/env php <?php /** * This example can be used to logfile processing and basically wraps the tail * command. * * The benefit of using this, is that it allows you to tail multiple logs at * the same time * * To stop this application, hit CTRL-C */ if ($argc < 2) { echo "Usage: " . $argv[0] . " filename\n"; exit(1); } require __DIR__ . '/../vendor/autoload.php'; $tail = popen('tail -fn0 ' . escapeshellarg($argv[1]), 'r'); \Sabre\Event\Loop\addReadStream($tail, function() use ($tail) { echo fread($tail, 4096); }); $loop->run();
Save
#!/usr/bin/env php run();