Home
last modified time | relevance | path

Searched refs:string (Results 1 – 25 of 185) sorted by relevance

12345678

/dokuwiki/vendor/paragonie/constant_time_encoding/src/
H A DEncoding.php48 string $str
49 ): string {
62 string $str
63 ): string {
76 string $str
77 ): string {
90 string $str
91 ): string {
104 string $str
105 ): string {
[all …]
H A DRFC4648.php53 string $str
54 ): string {
70 string $str
71 ): string {
87 string $str
88 ): string {
104 string $str
105 ): string {
121 string $str
122 ): string {
[all …]
H A DEncoderInterface.php45 string $binString
46 ): string;
58 string $encodedString,
60 ): string;
/dokuwiki/vendor/simplepie/simplepie/src/HTTP/
H A DResponse.php44 public function get_permanent_uri(): string;
68 public function get_final_requested_uri(): string;
112 public function has_header(string $name): bool;
128 public function get_header(string $name): array;
142 public function with_header(string $name, $value);
163 public function get_header_line(string $name): string;
170 public function get_body_content(): string;
H A DRawTextResponse.php40 public function __construct(string $raw_text, string $filepath)
47 public function get_permanent_uri(): string
52 public function get_final_requested_uri(): string
67 public function has_header(string $name): bool
72 public function get_header(string $name): array
77 public function with_header(string $name, $value)
89 public function get_header_line(string $name): string
94 public function get_body_content(): string
H A DPsr7Response.php37 …public function __construct(ResponseInterface $response, string $permanent_url, string $requested_…
44 public function get_permanent_uri(): string
49 public function get_final_requested_uri(): string
67 public function has_header(string $name): bool
72 public function with_header(string $name, $value)
77 public function get_header(string $name): array
82 public function get_header_line(string $name): string
87 public function get_body_content(): string
/dokuwiki/inc/Utf8/
H A DConversion.php164 public static function fromLatin1($string) argument
167 return mb_convert_encoding($string, 'UTF-8', 'ISO-8859-1');
170 return iconv('ISO-8859-1', 'UTF-8', $string);
173 return \UConverter::transcode($string, 'UTF8', 'ISO-8859-1');
177 return utf8_encode($string);
181 $string .= $string;
182 $len = strlen($string);
185 case $string[$i] < "\x80":
186 $string[$j] = $string[$i];
188 case $string[$i] < "\xC0":
[all …]
H A DClean.php83 * @param string $string The UTF8 string to strip of special chars
88 public static function stripspecials($string, $repl = '', $additional = '') argument
95 return preg_replace('/[' . $additional . '\x00-\x19' . $specials . ']/u', $repl, $string);
147 * @param string $string
151 public static function deaccent($string, $case = 0) argument
154 $string = strtr($string, Table::lowerAccents());
157 $string = strtr($string, Table::upperAccents());
159 return $string;
167 * @param string $string
170 public static function romanize($string) argument
[all …]
H A DPhpString.php44 * @param string $string
51 public static function strlen($string) argument
54 return mb_strlen($string, 'UTF-8');
58 return iconv_strlen($string, 'UTF-8');
63 return strlen(utf8_decode($string));
66 return strlen($string);
170 * @param string $string input string
181 public static function substr_replace($string, $replacement, $start, $length = 0) argument
184 if ($start > 0) $ret .= self::substr($string, 0, $start);
186 $ret .= self::substr($string, $start + $length);
[all …]
/dokuwiki/vendor/splitbrain/lesserphp/src/
H A DParserException.php10 protected string $error = '';
11 protected string $culprit = '';
12 protected string $sourceFile = '';
16 string $message = '',
17 ?string $culprit = '',
18 ?string $sourceFile = '',
44 public function getError(): string
54 public function getCulprit(): string
65 public function getSourceFile(): string
/dokuwiki/inc/TreeBuilder/Node/
H A DWikiStartpage.php10 protected string $originalNamespace;
19 public function __construct(string $id, ?string $title, string $originalNamespace)
33 public function getNs(): string
H A DAbstractNode.php13 protected string $id = '';
15 protected ?string $title = null;
28 public function __construct(string $id, ?string $title)
37 public function getId(): string
47 public function getNs(): string
55 public function getTitle(): ?string
63 public function setTitle(?string $title): void
167 public function setProperty(string $name, $value): void
179 public function getProperty(string $name, $default = null)
209 public function __toString(): string
/dokuwiki/vendor/openpsa/universalfeedcreator/lib/Creator/
H A DFeedCreator.php94 * @param string $string A string to be truncated.
98 public static function iTrunc($string, $length) argument
100 if (strlen($string) <= $length) {
101 return $string;
104 $pos = strrpos($string, ".");
106 $string = substr($string, 0, $length - 4);
107 $pos = strrpos($string, ".");
110 return substr($string, 0, $pos + 1)." ...";
113 $pos = strrpos($string, " ");
115 $string = substr($string, 0, $length - 4);
[all …]
/dokuwiki/vendor/simplepie/simplepie/src/
H A DMisc.php51 public static function absolutize_url(string $relative, string $base)
63 public static function is_remote_uri(string $uri): bool
73 * @param string $string HTML document
76 public static function get_element(string $realname, string $string) argument
82 …mplePie\SimplePie::PCRE_HTML_ATTRIBUTE . "(>(.*)<\/$name>|(\/)?>)/siU", $string, $matches, PREG_SE…
136 public static function error(string $message, int $level, string $file, int $line)
175 public static function fix_protocol(string $url, int $http = 1)
220 public static function parse_url(string $url)
235 …ic function compress_parse_url(string $scheme = '', string $authority = '', string $path = '', str…
249 public static function normalize_url(string $url)
[all …]
/dokuwiki/inc/Parsing/ParserMode/
H A DSuperscript.php14 protected function getModeName(): string
20 protected function getEntryPattern(): string
26 protected function getExitPattern(): string
H A DStrong.php14 protected function getModeName(): string
20 protected function getEntryPattern(): string
26 protected function getExitPattern(): string
H A DSubscript.php14 protected function getModeName(): string
20 protected function getEntryPattern(): string
26 protected function getExitPattern(): string
H A DDeleted.php14 protected function getModeName(): string
20 protected function getEntryPattern(): string
26 protected function getExitPattern(): string
H A DMonospace.php14 protected function getModeName(): string
20 protected function getEntryPattern(): string
26 protected function getExitPattern(): string
H A DUnderline.php14 protected function getModeName(): string
20 protected function getEntryPattern(): string
26 protected function getExitPattern(): string
H A DEmphasis.php14 protected function getModeName(): string
25 protected function getEntryPattern(): string
31 protected function getExitPattern(): string
/dokuwiki/inc/Search/Index/
H A DAbstractIndex.php17 protected string $idx;
20 protected string $suffix;
23 protected string $filename;
41 public function __construct(string $idx, string $suffix = '', bool $isWritable = false)
96 public function getFilename(): string
142 abstract public function changeRow(int $rid, string $value);
152 abstract public function retrieveRow(int $rid): string;
178 public function getRowID(string $value): ?int
205 abstract public function search(string $re): array;
/dokuwiki/inc/
H A DMailUtils.php43 public static function obfuscate(string $email): string
74 public static function obfuscateUrl(string $email): string
100 protected static function obfuscateAddress(string $addr): string
120 public static function isValid(string $email): bool
137 string $sText,
140 ): string {
159 static fn(array $matches): string => sprintf("=%02X", ord($matches[0])),
H A DIp32.php20 public static function bitmask64On32(string $u64, int $pow): string
53 private static function makeBitmaskOn32(int $pow): string
76 public static function ipv6UpperLowerOn32(string $binary)
85 private static function partsTo64(string $high, string $low): string
101 private static function decimalToBinary32(string $decimal): string
/dokuwiki/_test/tests/inc/
H A Dutf8_stripspecials.test.php27 * @param string $string
33 function testGivens($string, $replacement, $additional, $expected) argument
35 …$this->assertEquals($expected, \dokuwiki\Utf8\Clean::stripspecials($string, $replacement, $additio…

12345678