Home
last modified time | relevance | path

Searched full:contents (Results 1 – 25 of 78) sorted by relevance

1234

/dokuwiki/_test/tests/inc/
H A Dio_savefile.test.php28 $contents = "The\012Write\012Test\012";
29 $this->assertTrue(io_saveFile($file, $contents));
30 $this->assertEquals($contents, io_readFile($file));
31 $this->assertTrue(io_saveFile($file, $contents, true));
32 $this->assertEquals($contents.$contents, io_readFile($file));
H A Dio_deletefromfile.test.php7 $contents = "The\012Delete\012Delete01\012Delete02\012Delete\012DeleteX\012Test\012";
8 io_saveFile($file, $contents);
H A Dio_replaceinfile.test.php5 …protected $contents = "The\012Delete\012Delete\012Delete01\012Delete02\012Delete\012DeleteX\012Tes… variable in io_replaceinfile_test
31 io_saveFile($file, $this->contents);
72 io_saveFile($file, $this->contents);
84 io_saveFile($file, $this->contents);
95 $contents = "The\012Delete\01201Delete\01202Delete\012Test\012";
97 io_saveFile($file, $contents);
/dokuwiki/inc/Cache/
H A DCacheInstructions.php23 * @return array cache contents
27 $contents = io_readFile($this->cache, false);
28 return empty($contents) ? [] : unserialize($contents);
/dokuwiki/vendor/splitbrain/php-archive/
H A DREADME.md30 // To list the contents of an existing TAR archive, open() it and use
31 // contents() on it:
34 $toc = $tar->contents();
37 // To extract the contents of an existing TAR archive, open() it and use
/dokuwiki/vendor/kissifrot/php-ixr/src/Client/
H A DClientSSL.php193 $contents = curl_exec($curl);
196 // Check for 200 Code in $contents
197 if (!strstr($contents, '200 OK') && !strstr($contents, 'HTTP/2 200')) {
203 $this->debugOutput('<pre>' . htmlspecialchars($contents) . PHP_EOL . '</pre>');
209 $contents = substr($contents, strpos($contents, '<'));
211 $this->message = new Message($contents);
H A DClient.php113 $contents = '';
131 $contents .= $line;
142 $this->message = new Message($contents);
/dokuwiki/vendor/php81_bc/strftime/
H A DREADME.md21 # Table of contents
41 [TOC](#table-of-contents)
60 [TOC](#table-of-contents)
71 [TOC](#table-of-contents)
79 [TOC](#table-of-contents)
87 [TOC](#table-of-contents)
102 [TOC](#table-of-contents)
112 [TOC](#table-of-contents)
121 [TOC](#table-of-contents)
131 [TOC](#table-of-contents)
[all …]
/dokuwiki/lib/plugins/config/core/
H A DConfigParser.php33 $contents = @php_strip_whitespace($file);
36 if ($contents === null) {
44 preg_match_all($pattern, $contents, $matches, PREG_SET_ORDER);
/dokuwiki/.github/workflows/
H A DphpCS.yml11 contents: read # to fetch code (actions/checkout)
H A DtestWindows.yml11 contents: read # to fetch code (actions/checkout)
H A DtestLinux.yml11 contents: read # to fetch code (actions/checkout)
H A Drelease-preparation.yml85 If you're not happy with the contents of this PR, please close it, delete the branch,
/dokuwiki/vendor/splitbrain/php-archive/src/
H A DArchive.php34 * Read the contents of an archive
38 …* The archive is closed afer reading the contents, because rewinding is not possible in bzip2 stre…
43 abstract public function contents(); function in splitbrain\\PHPArchive\\Archive
H A DTar.php83 * Read the contents of a TAR archive
87 …* The archive is closed afer reading the contents, because rewinding is not possible in bzip2 stre…
94 public function contents() function in splitbrain\\PHPArchive\\Tar
106 * Read the contents of a TAR archive and return each entry using yield
109 * @see contents()
174 …* The archive is closed afer reading the contents, because rewinding is not possible in bzip2 stre…
/dokuwiki/conf/
H A Dacronyms.conf56 TOC Table of Contents
H A Dlicense.php4 * wiki contents under. Do not change this file, but create a
H A Dmediameta.php5 * following contents:
/dokuwiki/_test/tests/Subscriptions/
H A DSubscriberManagerTest.php82 // check contents
97 // check contents
/dokuwiki/lib/plugins/config/_test/
H A DWriterTest.php39 // check contents
/dokuwiki/inc/parser/
H A Dxhtmlsummary.php6 * It strips out the table of contents if one exists
/dokuwiki/lib/tpl/dokuwiki/css/
H A D_toc.css2 * This file provides styles for the TOC (table of contents), the
/dokuwiki/lib/scripts/
H A Dtree.js27 * The contents of subtrees are "cached" until the page is reloaded.
/dokuwiki/inc/Extension/
H A DSyntaxPlugin.php95 * The contents of the $data array depends on what the handler() function above
/dokuwiki/vendor/splitbrain/lesserphp/src/Functions/
H A DMisc.php57 … * Given an url, decide whether to output a regular link or the base64-encoded contents of the file

1234