| 1 | <?php |
||
| 16 | class FileInputStream extends StringInputStream implements InputStream |
||
| 17 | { |
||
| 18 | /** |
||
| 19 | * Load a file input stream. |
||
| 20 | * |
||
| 21 | * @param string $data The file or url path to load. |
||
| 22 | * @param string $encoding The encoding to use for the data. |
||
| 23 | * @param string $debug A fprintf format to use to echo the data on stdout. |
||
| 24 | */ |
||
| 25 | public function __construct($data, $encoding = 'UTF-8', $debug = '') |
||
| 32 | } |
||
| 33 |