Heray-Was-Here
Server : Apache
System : Linux mail.lomejor.cr 6.8.0-1059-azure #65~22.04.1-Ubuntu SMP Thu May 28 16:59:19 UTC 2026 x86_64
User : www-data ( 33)
PHP Version : 8.2.31
Disable Function : NONE
Directory :  /var/www/dev/htdocs/includes/sabre/sabre/event/examples/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : /var/www/dev/htdocs/includes/sabre/sabre/event/examples/tail.php
#!/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();

Hry