���ѧۧݧ�ӧ�� �ާ֧ߧ֧էا֧� - ���֧էѧܧ�ڧ��ӧѧ�� - /home/rickpfrv/craftaro.to/includes/vendor/pomo/pomo/src/Streams/StringReader.php
���ѧ٧ѧ�
<?php /** * This file is part of the POMO package. */ namespace POMO\Streams; /** * Provides file-like methods for manipulating a string instead * of a physical file. */ class StringReader extends Reader implements StreamInterface { public $_str = ''; public function __construct($str = '') { parent::__construct(); $this->_str = $str; $this->_pos = 0; } /** * @param string $bytes * @return string */ public function read($bytes) { $data = $this->substr($this->_str, $this->_pos, $bytes); $this->_pos += $bytes; if ($this->strlen($this->_str) < $this->_pos) { $this->_pos = $this->strlen($this->_str); } return $data; } /** * @param int $pos * @return int */ public function seekto($pos) { $this->_pos = $pos; if ($this->strlen($this->_str) < $this->_pos) { $this->_pos = $this->strlen($this->_str); } return $this->_pos; } /** * @return int */ public function length() { return $this->strlen($this->_str); } /** * @return string */ public function read_all() { return $this->substr($this->_str, $this->_pos, $this->strlen($this->_str)); } }
| ver. 1.4 |
Github
|
.
| PHP 7.4.33 | ���֧ߧ֧�ѧ�ڧ� ����ѧߧڧ��: 0.1 |
proxy
|
phpinfo
|
���ѧ����ۧܧ�