Home
last modified time | relevance | path

Searched refs:data (Results 151 – 161 of 161) sorted by path

1234567

/dokuwiki/vendor/simplepie/simplepie/src/Parse/
H A DDate.php57 * Input data
753 * @param string $data Data to strip comments from
/dokuwiki/vendor/simplepie/simplepie/src/
H A DParser.php72 public $data = []; variable in SimplePie\\Parser
83 public function parse(&$data, $encoding, $url = '') argument
87 @$doc->loadHTML($data);
95 return $this->parse_microformats($data, $url);
108 if (substr($data, 0, 4) === "\x00\x00\xFE\xFF") {
109 $data = substr($data, 4);
112 elseif (substr($data, 0, 4) === "\xFF\xFE\x00\x00") {
113 $data = substr($data,
379 parse_hcard($data, $category = false) global() argument
403 parse_microformats(& $data, $url) global() argument
[all...]
H A DSanitize.php56 * Used for data cleanup and post-processing
343 public function sanitize($data, $type, $base = '') argument
345 $data = trim($data);
346 if ($data !== '' || $type & \SimplePie\SimplePie::CONSTRUCT_IRI) {
348 if (preg_match('/(&(#(x[0-9a-fA-F]+|[0-9]+)|[a-zA-Z0-9]+)|<\/[A-Za-z][^\x09\x0A\x0B\x0C\x0D\x20\x2F\x3E]*' . \SimplePie\SimplePie::PCRE_HTML_ATTRIBUTE . '>)/', $data)) {
356 $data = base64_decode($data);
366 $data = $this->preprocess($data,
[all...]
H A DSimplePie.php415 * @var array Raw data
418 public $data = []; variable in SimplePie\\SimplePie
469 * @var string Raw feed data
498 * @var bool Force the given data/URL to be treated as a feed no matter what
678 * The SimplePie class contains feed level data and options
729 return md5(serialize($this->data));
738 if (!empty($this->data['items'])) {
739 foreach ($this->data['items'] as $item) {
742 unset($item, $this->data['items']);
744 if (!empty($this->data['ordered_item
825 set_raw_data($data) global() argument
2304 sanitize($data, $type, $base = '') global() argument
[all...]
H A DSource.php61 public $data = []; variable in SimplePie\\Source
64 public function __construct($item, $data) argument
67 $this->data = $data;
77 return md5(serialize($this->data));
82 if (isset($this->data['child'][$namespace][$tag])) {
83 return $this->data['child'][$namespace][$tag];
94 public function sanitize($data, $type, $base = '') argument
96 return $this->item->sanitize($data, $type, $base);
107 return $this->sanitize($return[0]['data'],
[all...]
/dokuwiki/vendor/simplepie/simplepie/src/XML/Declaration/
H A DParser.php113 * Input data
118 public $data = ''; variable in SimplePie\\XML\\Declaration\\Parser
121 * Input data length (to avoid calling strlen() everytime this is needed)
137 * Create an instance of the class with the input data
140 * @param string $data Input data
142 public function __construct($data) argument
144 $this->data = $data;
145 $this->data_length = strlen($this->data);
[all...]
/dokuwiki/vendor/splitbrain/php-archive/src/
H A DArchive.php84 * @param string|FileInfo $fileinfo either the name to us in archive (string) or a FileInfo oject with all meta data, empty to take from original
90 * Add a file to the current archive using the given $data as content
92 * @param string|FileInfo $fileinfo either the name to us in archive (string) or a FileInfo oject with all meta data
93 * @param string $data binary content of the file to add
96 abstract public function addData($fileinfo, $data); argument
101 * After a call to this function no more data can be added to the archive, for
107 * Returns the created in-memory archive data
114 * Save the created in-memory archive data
H A DTar.php192 // extract data
265 * @param string|FileInfo $fileinfo either the name to us in archive (string) or a FileInfo oject with all meta data, empty to take from original
283 // write data, but only if we have data to write.
285 // errors on Windows by testing if we have data to write.
293 $data = fread($fp, 512);
294 $read += strlen($data);
295 if ($data === false) {
298 if ($data === '') {
301 $packed = pack("a512", $data);
324 addData($fileinfo, $data) global() argument
457 writebytes($data) global() argument
[all...]
H A DZip.php293 * @param string|FileInfo $fileinfo either the name to us in archive (string) or a FileInfo oject with all meta data, empty to take from original
301 * @param string|FileInfo $fileinfo either the name to use in archive (string) or a FileInfo oject with all meta data, empty to take from original
336 // prepare info, compress and write data to archive
381 // we store no data descriptor
400 * Add a file to the current Zip archive using the given $data as content
402 * @param string|FileInfo $fileinfo either the name to us in archive (string) or a FileInfo oject with all meta data
403 * @param string $data binary content of the file to add
406 public function addData($fileinfo, $data) argument
416 // prepare info and compress data
417 $size = strlen($data);
790 writebytes($data) global() argument
812 writebytesAt($data, $offset) global() argument
[all...]
/dokuwiki/vendor/splitbrain/php-cli/
H A DREADME.md130 The CLI class is a fully PSR-3 compatible logger (printing colored log data to STDOUT and STDERR). This is useful when
/dokuwiki/vendor/splitbrain/slika/src/
H A DGdAdapter.php59 $data = file_get_contents($this->imagepath, false, null, 0, 70000);
60 if (preg_match('@\x12\x01\x03\x00\x01\x00\x00\x00(.)\x00\x00\x00@', $data, $matches)) {
63 } else if (preg_match('@\x01\x12\x00\x03\x00\x00\x00\x01\x00(.)\x00\x00@', $data, $matches)) {

1234567