![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/old/vendor/laminas/laminas-view/src/ |
<?php declare(strict_types=1); namespace Laminas\View; use function file_get_contents; use function preg_replace; use function stat; use function str_replace; use function strlen; use function substr; use const SEEK_CUR; use const SEEK_END; use const SEEK_SET; /** * Stream wrapper to convert markup of mostly-PHP templates into PHP prior to * include(). * * Based in large part on the example at * http://www.php.net/manual/en/function.stream-wrapper-register.php * * As well as the example provided at: * http://mikenaberezny.com/2006/02/19/symphony-templates-ruby-erb/ * written by * Mike Naberezny (@link http://mikenaberezny.com) * Paul M. Jones (@link http://paul-m-jones.com) * * @deprecated will be removed in version 3, only the normal PHP tags (<?php ?> and <?= ?>) should be used */ class Stream { /** * Current stream position. * * @var int */ protected $pos = 0; /** * Data for streaming. * * @var string */ protected $data; /** * Stream stats. * * @var array */ protected $stat; /** * Opens the script file and converts markup. * * @param string $path * @param $mode * @param $options * @param $opened_path * @return bool */ // @codingStandardsIgnoreStart public function stream_open($path, $mode, $options, &$opened_path) { // @codingStandardsIgnoreEnd // get the view script source $path = str_replace('laminas.view://', '', $path); $this->data = file_get_contents($path); /** * If reading the file failed, update our local stat store * to reflect the real stat of the file, then return on failure */ if ($this->data === false) { $this->stat = stat($path); return false; } /** * Convert <?= ?> to long-form <?php echo ?> and <?php ?> to <?php ?> */ $this->data = preg_replace('/\<\?\=/', "<?php echo ", $this->data); $this->data = preg_replace('/<\?(?!xml|php)/s', '<?php ', $this->data); /** * file_get_contents() won't update PHP's stat cache, so we grab a stat * of the file to prevent additional reads should the script be * requested again, which will make include() happy. */ $this->stat = stat($path); return true; } /** * Included so that __FILE__ returns the appropriate info * * @return array */ // @codingStandardsIgnoreStart public function url_stat() { // @codingStandardsIgnoreEnd return $this->stat; } /** * Reads from the stream. * * @param int $count * @return string */ // @codingStandardsIgnoreStart public function stream_read($count) { // @codingStandardsIgnoreEnd $ret = substr($this->data, $this->pos, $count); $this->pos += strlen($ret); return $ret; } /** * Tells the current position in the stream. * * @return int */ // @codingStandardsIgnoreStart public function stream_tell() { // @codingStandardsIgnoreEnd return $this->pos; } /** * Tells if we are at the end of the stream. * * @return bool */ // @codingStandardsIgnoreStart public function stream_eof() { // @codingStandardsIgnoreEnd return $this->pos >= strlen($this->data); } /** * Stream statistics. * * @return array */ // @codingStandardsIgnoreStart public function stream_stat() { // @codingStandardsIgnoreEnd return $this->stat; } /** * Seek to a specific point in the stream. * * @param $offset * @param $whence * @return bool */ // @codingStandardsIgnoreStart public function stream_seek($offset, $whence) { // @codingStandardsIgnoreEnd switch ($whence) { case SEEK_SET: if ($offset < strlen($this->data) && $offset >= 0) { $this->pos = $offset; return true; } else { return false; } break; case SEEK_CUR: if ($offset >= 0) { $this->pos += $offset; return true; } else { return false; } break; case SEEK_END: if (strlen($this->data) + $offset >= 0) { $this->pos = strlen($this->data) + $offset; return true; } else { return false; } break; default: return false; } } }