Home
last modified time | relevance | path

Searched refs:output (Results 26 – 40 of 40) sorted by path

12

/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/File/
H A DANSI.php445 $output = '';
486 $output .= $close . $open;
489 $output .= htmlspecialchars($char);
491 return $output;
501 $output = '';
506 $output .= $this->processCoordinate($last_attr, $cur_attr, isset($this->screen[$i][$j]) ? $this->screen[$i][$j] : '');
509 $output .= "\r\n";
511 $output = substr($output, 0, -2);
513 $output
[all...]
H A DX509.php1872 $output = '';
1921 $output .= $delim;
1943 $output .= $desc . '=' . $value;
1950 return $format == self::DN_OPENSSL ? $result : $output;
2805 // the bitwise AND ensures that the output is a valid IA5String
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Net/
H A DSSH1.php
H A DSSH2.php820 * Flag to suppress stderr from output
2810 * Get the output from stdError
2902 $output = '';
2907 return is_callable($callback) ? true : $output;
2917 $output .= $temp;
3128 * Returns the output of an interactive shell
3967 * Suppress stderr from output
3978 * Show stderr in output
4481 // dump the output out realtime; packets may be interspersed with non packets,
4702 $output
[all...]
/dokuwiki/vendor/simplepie/simplepie/idn/
H A DLICENCE144 running a program using the Library is not restricted, and output from
H A DReadMe.txt70 $output = $IDN->encode($input);
72 echo $output; // This will read: xn--nrgler-wxa.com
85 $output = $IDN->decode($input);
86 // Output, what we got now, if output should be in a format different to UTF-8
88 echo utf8_decode($output); // This will read: andre@börse.knörz.info
H A Didna_convert.class.php44 * array. Unicode output is available in the same formats.
47 * ACE input and output is always expected to be ASCII.
112 * 'ucs4_string' and 'ucs4_array' respectively for UCS4); The output is always UTF-8]
161 * [@param string Desired output encoding, see {@link set_parameter}]
242 // The output is UTF-8 by default, other output formats need conversion here
255 $this->_error('Unsupported output format');
284 // No input, no output, what else did you expect?
290 $output = '';
316 $output
[all...]
/dokuwiki/vendor/simplepie/simplepie/src/
H A DIRI.php361 $output = '';
375 // C: if the input buffer begins with a prefix of "/../" or "/..", where ".." is a complete path segment, then replace that prefix with "/" in the input buffer and remove the last segment and its preceding "/" (if any) from the output buffer; otherwise,
378 $output = substr_replace($output, '', intval(strrpos($output, '/')));
381 $output = substr_replace($output, '', intval(strrpos($output, '/')));
387 // E: move the first path segment in the input buffer to the end of the output buffer, including the initial "/" character (if any) and any subsequent characters up to, but not including, the next "/" character or the end of the input buffer
389 $output
[all...]
H A DMisc.php280 * @param string $output Encoding you want
283 public static function change_encoding($data, $input, $output) argument
286 $output = Misc::encoding($output);
300 if ($input === 'windows-1252' && $output === 'UTF-8') {
304 elseif (function_exists('mb_convert_encoding') && ($return = Misc::change_encoding_mbstring($data, $input, $output))) {
308 elseif (function_exists('iconv') && ($return = Misc::change_encoding_iconv($data, $input, $output))) {
312 elseif (class_exists('\UConverter') && ($return = Misc::change_encoding_uconverter($data, $input, $output))) {
320 protected static function change_encoding_mbstring($data, $input, $output) argument
325 if ($output
352 change_encoding_iconv($data, $input, $output) global() argument
363 change_encoding_uconverter($data, $input, $output) global() argument
[all...]
/dokuwiki/vendor/simplepie/simplepie/src/Parse/
H A DDate.php763 $output = '';
766 $output .= substr($string, $position, $pos - $position);
791 $output .= '(';
794 $output .= substr($string, $position);
796 return $output;
/dokuwiki/vendor/splitbrain/php-archive/src/
H A DTar.php138 * By default this will extract all files found in the archive. You can restrict the output using the $include
185 // create output directory
186 $output = $outdir.'/'.$fileinfo->getPath();
187 $directory = ($fileinfo->getIsdir()) ? $output : dirname($output);
194 $fp = @fopen($output, "wb");
196 throw new ArchiveIOException('Could not open file for writing: '.$output);
208 @touch($output, $fileinfo->getMtime());
209 @chmod($output, $fileinfo->getMode());
H A DZip.php121 * By default this will extract all files found in the archive. You can restrict the output using the $include
168 // create output directory
169 $output = $outdir.'/'.$fileinfo->getPath();
170 $directory = ($header['folder']) ? $output : dirname($output);
183 $extractto = $output;
185 $extractto = $output.'.gz';
234 $fp = @fopen($output, 'wb');
252 @touch($output, $fileinfo->getMtime());
/dokuwiki/vendor/splitbrain/php-cli/
H A DREADME.md10 - **colored output**
87 ## Colored output
89 Colored output is handled through the ``Colors`` class. It tries to detect if a color terminal is available and only
90 then uses terminal colors. You can always suppress colored output by passing ``--no-colors`` to your scripts.
131 you call backend code from your CLI that expects a Logger instance to produce any sensible status output while running.
/dokuwiki/vendor/splitbrain/slika/
H A DREADME.md37 ->save('output.jpg', 'jpg');
55 Slika::run('input.jpg')->resize(500,500)->save('output.png', 'png');
58 Slika::run('input.jpg')->resize(500,0)->save('output.png', 'png');
61 Slika::run('input.jpg')->resize(0,500)->save('output.png', 'png');
69 Slika::run('input.jpg')->crop(500,500)->save('output.png', 'png');
86 Slika::run('input.jpg')->rotate(Slika::ROTATE_CW)->save('output.png', 'png');
94 Slika::run('input.jpg')->autorotate()->save('output.png', 'png');
/dokuwiki/vendor/splitbrain/slika/src/
H A DImageMagickAdapter.php122 $output = [];
124 exec($cmd, $output, $return);

12