Home
last modified time | relevance | path

Searched refs:string (Results 1 – 25 of 49) sorted by path

12

/dokuwiki/data/pages/wiki/
H A Dsyntax.txt115 You can use up to five different levels of headlines to structure your content. If you have more than three headlines, a table of contents is generated automatically -- this can be disabled by including the string ''<nowiki>~~NOTOC~~</nowiki>'' in the document.
415 System.out.println("Hello World!"); //Display the string.
/dokuwiki/inc/HTTP/
H A DHTTPClient.php84 * @param string $url The URL to fetch
86 * @return false|string response body, false on error
106 * @param string $url The URL to fetch
109 * @return false|string response body, false on error
129 * @param string $url The URL to fetch
131 * @return false|string response body, false on error
147 * Post data should be passed as associative array. When passed as string it will be
150 * @param string $url - the complete URL
152 * @param string $method - HTTP Method usually GET or POST.
514 * @param string
759 parseHeaders($string) global() argument
[all...]
/dokuwiki/inc/Utf8/
H A DClean.php11 * Checks if a string contains 7bit ASCII only
15 * @param string $str
24 * Tries to detect if a string is in Unicode encoding
29 * @param string $str
56 * Returns a pure ASCII7 string
60 * @param string $str
61 * @return string
76 * Removes special characters (nonalphanumeric) from a UTF-8 string
83 * @param string $string Th
88 stripspecials($string, $repl = '', $additional = '') global() argument
151 deaccent($string, $case = 0) global() argument
170 romanize($string) global() argument
[all...]
H A DPhpString.php6 * UTF-8 aware equivalents to PHP's string functions
15 * @param string $path A path
16 * @param string $suffix If the name component ends in suffix this will also be cut off
17 * @return string
44 * @param string $string
51 public static function strlen($string)
54 return mb_strlen($string, 'UTF-8');
58 return iconv_strlen($string, 'UTF-8');
63 return strlen(utf8_decode($string));
52 strlen($string) global() argument
190 substr_replace($string, $replacement, $start, $length = 0) global() argument
269 strtolower($string) global() argument
293 strtoupper($string) global() argument
[all...]
H A DTable.php79 * Get the special chars as a concatenated string
80 * @return string
84 static $string = null;
85 if ($string === null) {
88 $string = Unicode::toUtf8($table);
90 return $string;
/dokuwiki/inc/
H A Dcommon.php29 * @param string $string the string being converted
30 * @return string converted string
32 function hsc($string)
34 return htmlspecialchars($string, ENT_QUOTES | ENT_SUBSTITUTE | ENT_HTML401, 'UTF-8');
41 * If the $input string does not contain enough elements, the missing elements will be
42 * filled up with the $default value. If the input string contains more elements, the last
45 * @param string
28 hsc($string) global() argument
47 sexplode($separator, $string, $limit, $default = null) global() argument
88 ptln($string, $indent = 0) global() argument
100 stripctl($string) global() argument
1540 unslash($string, $char = ''') global() argument
1579 preg_quote_cb($string) global() argument
[all...]
H A Dindexer.php33 * @return int|string
54 * Measure the length of a string.
59 * @param string $w
117 * @param string $page name of the page to index
120 * @return string|boolean the function completed successfully
236 * Split a string into tokens
238 * @param string $string
243 function idx_tokenizer($string, $wc = false)
246 return $Indexer->tokenizer($string,
237 idx_tokenizer($string, $wc = false) global() argument
[all...]
H A Dutf8.php109 function utf8_substr_replace($string, $replacement, $start, $length = 0)
112 return PhpString::substr_replace($string, $replacement, $start, $length);
108 utf8_substr_replace($string, $replacement, $start, $length = 0) global() argument
/dokuwiki/inc/parser/
H A Dxhtml.php37 /** @var string temporary $doc store */
64 * @return string A marker class for the starting HTML element
74 hsc((string)$data)
119 * @return string always 'xhtml'
197 * @param string $id the hash link
198 * @param string $text the text to display
214 * @param string $text the text to display
218 * @return void|string writes to doc attribute or returns html depends on $returnonly
501 * @param string|string[]
1687 _xmlEntities($string) global() argument
[all...]
/dokuwiki/lib/exe/
H A Djs.php173 * @param string $file filename path to file
278 * @param string $tpl
320 * @param string $string
321 * @return string
325 function js_escape($string)
327 return str_replace('\\\\n', '\\n', addslashes($string));
333 * @param string $func
319 js_escape($string) global() argument
/dokuwiki/lib/plugins/authldap/
H A Dauth.php54 * @param string $user
55 * @param string $pass
78 // special bind string
132 * name string full name of the user
133 * mail string email addres of the user
139 * dn string distinguished name (DN)
140 * uid string Posix User ID
143 * @param string $user
160 * @param string $user
319 * @param string
521 filterEscape($string) global() argument
[all...]
/dokuwiki/lib/plugins/config/core/Setting/
H A DSetting.php12 /** @var string unique identifier of this setting */
37 * @param string $key
129 * @return string
140 * @return string
161 * @return string key
177 * @return string
195 * @return string[] with content array(string $label_html, string $input_html)
236 * @param string
229 escape($string) global() argument
[all...]
H A DSettingArray.php11 * Create an array from a string
13 * @param string $string
16 protected function fromString($string) argument
18 $array = explode(',', $string);
26 * Create a string from an array
29 * @return string
40 * @param string $input
/dokuwiki/lib/plugins/popularity/
H A Dhelper.php61 * @param string $data The popularity data
62 * @return string An empty string if everything worked fine, a string describing the error otherwise
91 * @return string The popularity data as a string
96 $string = '';
99 $string .= hsc($key) . "\t" . hsc($v) . "\n";
101 $string .= hsc($key) . "\t" . hsc($val) . "\n";
104 return $string;
[all...]
/dokuwiki/lib/plugins/revert/lang/en/
H A Dintro.txt3 This page helps you with the automatic reversion of a spam attack. To find a list of spammy pages first enter a search string (eg. a spam URL), then confirm that the found pages are really spam and revert the edits.
/dokuwiki/vendor/aziraphale/email-address-validator/
H A DREADME.md54 // "test" is technically a valid string to have before the "@" in an email address
/dokuwiki/vendor/geshi/geshi/
H A DBUGS18 - The result is built by string replacement instead of by building another string based
H A DCHANGELOG62 * Haskell: Non-standard string highlighting (Evan Czaplicki)
113 * Implemented C++11 string literal support (BenBE)
118 * Add raw string support for Rust (mbrown1413)
237 inside of non-string parts
360 * Fixed @""-string handling for C# (SF#2789371, BenBE)
525 - Improved overall string support:
526 * Added support for multichar string delimiters (SF#1932083, BenBE)
618 - Code cleanup by using direct string indexing instead of substr with length 1 (Milian Wolff)
699 * Configurable line endings (Replace \n by custom string)
828 - Fix backtick-string highlightin
[all...]
/dokuwiki/vendor/geshi/geshi/src/
H A Dgeshi.php110 // Important string starter/finisher
230 * @var string
236 * @var string
248 * @var string
254 * @var string
319 * @var string
325 * @var string
331 * @var string
337 * @var string
364 * @var string
4289 hsc($string, $quote_style = ENT_COMPAT) global() argument
4743 geshi_highlight($string, $language, $path = null, $return = false) global() argument
[all...]
/dokuwiki/vendor/kissifrot/php-ixr/src/Server/
H A DIntrospectionServer.php31 ['array', 'string'],
49 ['string', 'string'],
50 'Returns a documentation string for the specified method'
96 case 'string':
137 case 'string':
138 $return[] = 'string';
/dokuwiki/vendor/marcusschwarz/lesserphp/
H A DREADME.md
H A Dlessc.inc.php
/dokuwiki/vendor/openpsa/universalfeedcreator/lib/Creator/
H A DFeedCreator.php36 * Generator string
78 * Get the version string for the generator
80 * @return string
88 * Truncates a string to a certain length at the most sensible point.
89 * First, if there's a '.' character near the end of the string, the string is truncated after this character.
90 * If there is no '.', the string is truncated after the last ' ' character.
91 * If the string is truncated, " ..." is appended.
92 * If the string is already shorter than $length, it is returned unchanged.
94 * @param string
95 iTrunc($string, $length) global() argument
[all...]
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Crypt/
H A DBase.php
H A DHash.php93 * @var string
101 * @var string
109 * @var string
124 * @var string
134 * @var string
144 * @var string
170 * @var string
200 * @param string $hash
212 * @param string $key
226 * @param string
887 _string_shift(& $string, $index = 1) global() argument
[all...]

12