| Server IP : 213.186.33.4 / Your IP : 216.73.216.193 Web Server : Apache System : Linux webm001.cluster103.gra.hosting.ovh.net 5.15.206-ovh-vps-grsec-zfs-classid #1 SMP Fri May 15 02:41:25 UTC 2026 x86_64 User : awebpaca ( 35430) PHP Version : 8.5.0 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/a/w/e/awebpaca/Dolibarr/htdocs/includes/sabre/sabre/event/examples/ |
Upload File : |
#!/usr/bin/env php
<?php declare (strict_types=1);
/**
* 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);
});
\Sabre\Event\Loop\run();