php-tail 추가

This commit is contained in:
2018-04-01 18:44:45 +09:00
parent 74390602d8
commit 5860a14dae
40 changed files with 1928 additions and 2 deletions
+30
View File
@@ -0,0 +1,30 @@
<?php
namespace PhpExtended\Tail;
/**
* TailShellException class file.
*
* This exception occurred if the `tail -n` command on an unix shell did not
* return the expected result.
*
* @author Anastaszor
*/
class TailShellException extends TailException
{
/**
* Builds a new TailShellException object.
*
* @param string $filename the name of targeted file
* @param int $nblines the number of lines that were demanded
* @param int $hint an estimation of the line length in that file
*/
public function __construct($filename, $nblines, $hint)
{
parent::__construct($filename, $nblines, $hint,
strtr('Error in reading file {filename}', array('{filename}' => $filename)),
500
);
}
}