Home
last modified time | relevance | path

Searched refs:input (Results 51 – 56 of 56) sorted by path

123

/dokuwiki/vendor/simplepie/simplepie/idn/
H A DReadMe.txt67 // The input string, if input is not UTF-8 or UCS-4, it must be converted before
68 $input = utf8_encode('nörgler.com');
70 $output = $IDN->encode($input);
82 // The input string
83 $input = 'andre@xn--brse-5qa.xn--knrz-1ra.info';
85 $output = $IDN->decode($input);
91 3. The input is read from a UCS-4 coded file and encoded line by line. By
92 appending the optional second parameter we tell enode() about the input
99 // Iterate through the input fil
[all...]
H A Didna_convert.class.php43 * Unicode input might be given as either UTF-8 string, UCS-4 string or UCS-4
47 * ACE input and output is always expected to be ASCII.
89 var $_api_encoding = 'utf8'; // Default input charset is UTF-8
111 * [encoding - Use either UTF-8, UCS4 as array or UCS4 as string as input ('utf8' for UTF-8,
118 * by silently ignoring errors and returning the original input instead
165 function decode($input, $one_time_encoding = false) argument
180 $input = trim($input);
182 // Negotiate input and try to determine, whether it is a plain string,
184 if (strpos($input, '
561 _nameprep($input) global() argument
665 _hangul_compose($input) global() argument
718 _apply_cannonical_ordering($input) global() argument
751 _combine($input) global() argument
788 _utf8_to_ucs4($input) global() argument
865 _ucs4_to_utf8($input) global() argument
902 _ucs4_to_ucs4_string($input) global() argument
918 _ucs4_string_to_ucs4($input) global() argument
[all...]
/dokuwiki/vendor/simplepie/simplepie/src/
H A DIRI.php356 * @param string $input
359 protected function remove_dot_segments($input) argument
362 while (strpos($input, './') !== false || strpos($input, '/.') !== false || $input === '.' || $input === '..') {
363 // A: If the input buffer begins with a prefix of "../" or "./", then remove that prefix from the input buffer; otherwise,
364 if (strpos($input, '../') === 0) {
365 $input
[all...]
H A DMisc.php278 * @param string $data Raw data in $input encoding
279 * @param string $input Encoding of $data
283 public static function change_encoding($data, $input, $output) argument
285 $input = Misc::encoding($input);
289 if ($input === 'US-ASCII') {
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,
320 change_encoding_mbstring($data, $input, $output) global() argument
352 change_encoding_iconv($data, $input, $output) global() argument
363 change_encoding_uconverter($data, $input, $output) global() argument
[all...]
H A DSimplePie.php568 * @var mixed Force input encoding to be set to the follow value
662 public $strip_htmltags = ['base', 'blink', 'body', 'doctype', 'embed', 'font', 'form', 'frame', 'frameset', 'html', 'iframe', 'input', 'marquee', 'meta', 'noscript', 'object', 'param', 'script', 'style'];
1448 * |form|@action, |img|@longdesc, |img|@src, |input|@src, |ins|@cite,
1610 // First check to see if input has been overridden.
/dokuwiki/vendor/splitbrain/slika/
H A DREADME.md34 Slika::run('input.png', $options)
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');

123