Home
last modified time | relevance | path

Searched refs:mb_substr (Results 1 – 25 of 1543) sorted by relevance

12345678910>>...62

/dports/www/limesurvey/limesurvey/application/third_party/ar-php/Arabic/
H A DWordTag.php177 if (mb_substr($word, -1, 1) == 'ً' || mb_substr($word, -1, 1) == 'ٌ'
178 || mb_substr($word, -1, 1) == 'ٍ'
187 if (mb_substr($word, 0, 1) == 'ا' && mb_substr($word, 1, 1) == 'ل'
201 if ((mb_substr($word, -1, 1) == 'ة' || mb_substr($word, -1, 1) == 'ء'
209 if (mb_substr($word, -1, 1) == 'ت' && mb_substr($word, -2, 1) == 'ا'
216 if (mb_substr($word, 0, 1) == 'ن' && (mb_substr($word, 1, 1) == 'ر'
217 || mb_substr($word, 1, 1) == 'ل' || mb_substr($word, 1, 1) == 'ن')
225 if (mb_substr($word, 0, 1) == 'ي'
233 if ((mb_substr($word, 0, 1) == 'ب' || mb_substr($word, 0, 1) == 'م')
234 && (mb_substr($word, 1, 1) == 'ب' || mb_substr($word, 1, 1) == 'ف'
[all …]
/dports/lang/php73/php-7.3.33/ext/mbstring/tests/
H A Dmb_substr_variation2.phpt6 function_exists('mb_substr') or die("skip mb_substr() is not available in this build");
20 echo "*** Testing mb_substr() : usage variations ***\n";
99 $res = mb_substr($str, $start, $length, $input);
113 *** Testing mb_substr() : usage variations ***
117 Warning: mb_substr(): Unknown encoding "0" in %s on line %d
122 Warning: mb_substr(): Unknown encoding "1" in %s on line %d
162 Warning: mb_substr(): Unknown encoding "" in %s on line %d
167 Warning: mb_substr(): Unknown encoding "" in %s on line %d
177 Warning: mb_substr(): Unknown encoding "" in %s on line %d
187 Warning: mb_substr(): Unknown encoding "" in %s on line %d
[all …]
H A Dmb_substr_error1.phpt2 Test mb_substr() function : error conditions - Pass incorrect number of args
6 function_exists('mb_substr') or die("skip mb_substr() is not available in this build");
16 * Pass incorrect number of arguments to mb_substr() to test behaviour
19 echo "*** Testing mb_substr() : error conditions ***\n";
21 //Test mb_substr with one more than the expected number of arguments
28 var_dump( mb_substr($str, $start, $length, $encoding, $extra_arg) );
30 // Testing mb_substr with one less than the expected number of arguments
33 var_dump( mb_substr($str) );
38 *** Testing mb_substr() : error conditions ***
40 -- Testing mb_substr() function with more than expected no. of arguments --
[all …]
H A Dmb_substr_basic.phpt2 Test mb_substr() function : basic functionality
6 function_exists('mb_substr') or die("skip mb_substr() is not available in this build");
12 /* Prototype : string mb_substr(string $str, int $start [, int $length [, string $encoding]])
18 * Test Basic Functionality of mb_substr with ASCII characters and multibyte strings.
21 echo "*** Testing mb_substr() : basic functionality ***\n";
28 var_dump(mb_substr($string_ascii, 3));
31 var_dump(mb_substr($string_ascii, 3, 5, 'ISO-8859-1'));
34 $result_1 = mb_substr($string_mb, 2, 7);
38 $result_2 = mb_substr($string_mb, 2, 7, 'utf-8');
44 *** Testing mb_substr() : basic functionality ***
H A Dmb_substr_error2.phpt2 Test mb_substr() function : error conditions - Pass an unknown encoding
6 function_exists('mb_substr') or die("skip mb_substr() is not available in this build");
10 /* Prototype : string mb_substr(string $str, int $start [, int $length [, string $encoding]])
16 * Pass an unknown encoding to mb_substr() to test behaviour
19 echo "*** Testing mb_substr() : error conditions ***\n";
26 var_dump( mb_substr($str, $start, $length, $encoding));
31 *** Testing mb_substr() : error conditions ***
33 Warning: mb_substr(): Unknown encoding "unknown-encoding" in %s on line %d
/dports/converters/php73-mbstring/php-7.3.33/ext/mbstring/tests/
H A Dmb_substr_variation2.phpt6 function_exists('mb_substr') or die("skip mb_substr() is not available in this build");
20 echo "*** Testing mb_substr() : usage variations ***\n";
99 $res = mb_substr($str, $start, $length, $input);
113 *** Testing mb_substr() : usage variations ***
117 Warning: mb_substr(): Unknown encoding "0" in %s on line %d
122 Warning: mb_substr(): Unknown encoding "1" in %s on line %d
162 Warning: mb_substr(): Unknown encoding "" in %s on line %d
167 Warning: mb_substr(): Unknown encoding "" in %s on line %d
177 Warning: mb_substr(): Unknown encoding "" in %s on line %d
187 Warning: mb_substr(): Unknown encoding "" in %s on line %d
[all …]
H A Dmb_substr_error1.phpt2 Test mb_substr() function : error conditions - Pass incorrect number of args
6 function_exists('mb_substr') or die("skip mb_substr() is not available in this build");
16 * Pass incorrect number of arguments to mb_substr() to test behaviour
19 echo "*** Testing mb_substr() : error conditions ***\n";
21 //Test mb_substr with one more than the expected number of arguments
28 var_dump( mb_substr($str, $start, $length, $encoding, $extra_arg) );
30 // Testing mb_substr with one less than the expected number of arguments
33 var_dump( mb_substr($str) );
38 *** Testing mb_substr() : error conditions ***
40 -- Testing mb_substr() function with more than expected no. of arguments --
[all …]
H A Dmb_substr_basic.phpt2 Test mb_substr() function : basic functionality
6 function_exists('mb_substr') or die("skip mb_substr() is not available in this build");
12 /* Prototype : string mb_substr(string $str, int $start [, int $length [, string $encoding]])
18 * Test Basic Functionality of mb_substr with ASCII characters and multibyte strings.
21 echo "*** Testing mb_substr() : basic functionality ***\n";
28 var_dump(mb_substr($string_ascii, 3));
31 var_dump(mb_substr($string_ascii, 3, 5, 'ISO-8859-1'));
34 $result_1 = mb_substr($string_mb, 2, 7);
38 $result_2 = mb_substr($string_mb, 2, 7, 'utf-8');
44 *** Testing mb_substr() : basic functionality ***
H A Dmb_substr_error2.phpt2 Test mb_substr() function : error conditions - Pass an unknown encoding
6 function_exists('mb_substr') or die("skip mb_substr() is not available in this build");
10 /* Prototype : string mb_substr(string $str, int $start [, int $length [, string $encoding]])
16 * Pass an unknown encoding to mb_substr() to test behaviour
19 echo "*** Testing mb_substr() : error conditions ***\n";
26 var_dump( mb_substr($str, $start, $length, $encoding));
31 *** Testing mb_substr() : error conditions ***
33 Warning: mb_substr(): Unknown encoding "unknown-encoding" in %s on line %d
/dports/www/mod_php73/php-7.3.33/ext/mbstring/tests/
H A Dmb_substr_variation2.phpt6 function_exists('mb_substr') or die("skip mb_substr() is not available in this build");
20 echo "*** Testing mb_substr() : usage variations ***\n";
99 $res = mb_substr($str, $start, $length, $input);
113 *** Testing mb_substr() : usage variations ***
117 Warning: mb_substr(): Unknown encoding "0" in %s on line %d
122 Warning: mb_substr(): Unknown encoding "1" in %s on line %d
162 Warning: mb_substr(): Unknown encoding "" in %s on line %d
167 Warning: mb_substr(): Unknown encoding "" in %s on line %d
177 Warning: mb_substr(): Unknown encoding "" in %s on line %d
187 Warning: mb_substr(): Unknown encoding "" in %s on line %d
[all …]
H A Dmb_substr_error1.phpt2 Test mb_substr() function : error conditions - Pass incorrect number of args
6 function_exists('mb_substr') or die("skip mb_substr() is not available in this build");
16 * Pass incorrect number of arguments to mb_substr() to test behaviour
19 echo "*** Testing mb_substr() : error conditions ***\n";
21 //Test mb_substr with one more than the expected number of arguments
28 var_dump( mb_substr($str, $start, $length, $encoding, $extra_arg) );
30 // Testing mb_substr with one less than the expected number of arguments
33 var_dump( mb_substr($str) );
38 *** Testing mb_substr() : error conditions ***
40 -- Testing mb_substr() function with more than expected no. of arguments --
[all …]
H A Dmb_substr_basic.phpt2 Test mb_substr() function : basic functionality
6 function_exists('mb_substr') or die("skip mb_substr() is not available in this build");
12 /* Prototype : string mb_substr(string $str, int $start [, int $length [, string $encoding]])
18 * Test Basic Functionality of mb_substr with ASCII characters and multibyte strings.
21 echo "*** Testing mb_substr() : basic functionality ***\n";
28 var_dump(mb_substr($string_ascii, 3));
31 var_dump(mb_substr($string_ascii, 3, 5, 'ISO-8859-1'));
34 $result_1 = mb_substr($string_mb, 2, 7);
38 $result_2 = mb_substr($string_mb, 2, 7, 'utf-8');
44 *** Testing mb_substr() : basic functionality ***
H A Dmb_substr_error2.phpt2 Test mb_substr() function : error conditions - Pass an unknown encoding
6 function_exists('mb_substr') or die("skip mb_substr() is not available in this build");
10 /* Prototype : string mb_substr(string $str, int $start [, int $length [, string $encoding]])
16 * Pass an unknown encoding to mb_substr() to test behaviour
19 echo "*** Testing mb_substr() : error conditions ***\n";
26 var_dump( mb_substr($str, $start, $length, $encoding));
31 *** Testing mb_substr() : error conditions ***
33 Warning: mb_substr(): Unknown encoding "unknown-encoding" in %s on line %d
/dports/converters/php74-mbstring/php-7.4.27/ext/mbstring/tests/
H A Dmb_substr_basic.phpt2 Test mb_substr() function : basic functionality
6 function_exists('mb_substr') or die("skip mb_substr() is not available in this build");
12 /* Prototype : string mb_substr(string $str, int $start [, int $length [, string $encoding]])
18 * Test Basic Functionality of mb_substr with ASCII characters and multibyte strings.
21 echo "*** Testing mb_substr() : basic functionality ***\n";
28 var_dump(mb_substr($string_ascii, 3));
31 var_dump(mb_substr($string_ascii, 3, 5, 'ISO-8859-1'));
34 $result_1 = mb_substr($string_mb, 2, 7);
38 $result_2 = mb_substr($string_mb, 2, 7, 'utf-8');
44 *** Testing mb_substr() : basic functionality ***
H A Dmb_substr_error2.phpt2 Test mb_substr() function : error conditions - Pass an unknown encoding
6 function_exists('mb_substr') or die("skip mb_substr() is not available in this build");
10 /* Prototype : string mb_substr(string $str, int $start [, int $length [, string $encoding]])
16 * Pass an unknown encoding to mb_substr() to test behaviour
19 echo "*** Testing mb_substr() : error conditions ***\n";
26 var_dump( mb_substr($str, $start, $length, $encoding));
31 *** Testing mb_substr() : error conditions ***
33 Warning: mb_substr(): Unknown encoding "unknown-encoding" in %s on line %d
/dports/lang/php74/php-7.4.27/ext/mbstring/tests/
H A Dmb_substr_basic.phpt2 Test mb_substr() function : basic functionality
6 function_exists('mb_substr') or die("skip mb_substr() is not available in this build");
12 /* Prototype : string mb_substr(string $str, int $start [, int $length [, string $encoding]])
18 * Test Basic Functionality of mb_substr with ASCII characters and multibyte strings.
21 echo "*** Testing mb_substr() : basic functionality ***\n";
28 var_dump(mb_substr($string_ascii, 3));
31 var_dump(mb_substr($string_ascii, 3, 5, 'ISO-8859-1'));
34 $result_1 = mb_substr($string_mb, 2, 7);
38 $result_2 = mb_substr($string_mb, 2, 7, 'utf-8');
44 *** Testing mb_substr() : basic functionality ***
H A Dmb_substr_error2.phpt2 Test mb_substr() function : error conditions - Pass an unknown encoding
6 function_exists('mb_substr') or die("skip mb_substr() is not available in this build");
10 /* Prototype : string mb_substr(string $str, int $start [, int $length [, string $encoding]])
16 * Pass an unknown encoding to mb_substr() to test behaviour
19 echo "*** Testing mb_substr() : error conditions ***\n";
26 var_dump( mb_substr($str, $start, $length, $encoding));
31 *** Testing mb_substr() : error conditions ***
33 Warning: mb_substr(): Unknown encoding "unknown-encoding" in %s on line %d
/dports/www/mod_php74/php-7.4.27/ext/mbstring/tests/
H A Dmb_substr_basic.phpt2 Test mb_substr() function : basic functionality
6 function_exists('mb_substr') or die("skip mb_substr() is not available in this build");
12 /* Prototype : string mb_substr(string $str, int $start [, int $length [, string $encoding]])
18 * Test Basic Functionality of mb_substr with ASCII characters and multibyte strings.
21 echo "*** Testing mb_substr() : basic functionality ***\n";
28 var_dump(mb_substr($string_ascii, 3));
31 var_dump(mb_substr($string_ascii, 3, 5, 'ISO-8859-1'));
34 $result_1 = mb_substr($string_mb, 2, 7);
38 $result_2 = mb_substr($string_mb, 2, 7, 'utf-8');
44 *** Testing mb_substr() : basic functionality ***
H A Dmb_substr_error2.phpt2 Test mb_substr() function : error conditions - Pass an unknown encoding
6 function_exists('mb_substr') or die("skip mb_substr() is not available in this build");
10 /* Prototype : string mb_substr(string $str, int $start [, int $length [, string $encoding]])
16 * Pass an unknown encoding to mb_substr() to test behaviour
19 echo "*** Testing mb_substr() : error conditions ***\n";
26 var_dump( mb_substr($str, $start, $length, $encoding));
31 *** Testing mb_substr() : error conditions ***
33 Warning: mb_substr(): Unknown encoding "unknown-encoding" in %s on line %d
/dports/converters/php80-mbstring/php-8.0.15/ext/mbstring/tests/
H A Dmb_substr_basic.phpt2 Test mb_substr() function : basic functionality
6 function_exists('mb_substr') or die("skip mb_substr() is not available in this build");
13 * Test Basic Functionality of mb_substr with ASCII characters and multibyte strings.
16 echo "*** Testing mb_substr() : basic functionality ***\n";
23 var_dump(mb_substr($string_ascii, 3));
26 var_dump(mb_substr($string_ascii, 3, 5, 'ISO-8859-1'));
29 $result_1 = mb_substr($string_mb, 2, 7);
33 $result_2 = mb_substr($string_mb, 2, 7, 'utf-8');
39 *** Testing mb_substr() : basic functionality ***
/dports/lang/php80/php-8.0.15/ext/mbstring/tests/
H A Dmb_substr_basic.phpt2 Test mb_substr() function : basic functionality
6 function_exists('mb_substr') or die("skip mb_substr() is not available in this build");
13 * Test Basic Functionality of mb_substr with ASCII characters and multibyte strings.
16 echo "*** Testing mb_substr() : basic functionality ***\n";
23 var_dump(mb_substr($string_ascii, 3));
26 var_dump(mb_substr($string_ascii, 3, 5, 'ISO-8859-1'));
29 $result_1 = mb_substr($string_mb, 2, 7);
33 $result_2 = mb_substr($string_mb, 2, 7, 'utf-8');
39 *** Testing mb_substr() : basic functionality ***
/dports/www/mod_php80/php-8.0.15/ext/mbstring/tests/
H A Dmb_substr_basic.phpt2 Test mb_substr() function : basic functionality
6 function_exists('mb_substr') or die("skip mb_substr() is not available in this build");
13 * Test Basic Functionality of mb_substr with ASCII characters and multibyte strings.
16 echo "*** Testing mb_substr() : basic functionality ***\n";
23 var_dump(mb_substr($string_ascii, 3));
26 var_dump(mb_substr($string_ascii, 3, 5, 'ISO-8859-1'));
29 $result_1 = mb_substr($string_mb, 2, 7);
33 $result_2 = mb_substr($string_mb, 2, 7, 'utf-8');
39 *** Testing mb_substr() : basic functionality ***
/dports/databases/phpmyadmin5/phpMyAdmin-5.1.2-all-languages/libraries/classes/Gis/
H A DGisMultiPoint.php18 use function mb_substr; alias
68 = mb_substr(
99 $red = hexdec(mb_substr($point_color, 1, 2));
101 $blue = hexdec(mb_substr($point_color, 4, 2));
106 = mb_substr(
182 = mb_substr(
233 = mb_substr(
312 = mb_substr(
354 = mb_substr(
381 = mb_substr(
[all …]
H A DGisMultiLineString.php19 use function mb_substr; alias
71 = mb_substr(
115 = mb_substr(
188 = mb_substr(
249 = mb_substr(
313 = mb_substr(
364 = mb_substr(
372 = mb_substr(
399 = mb_substr(
407 = mb_substr(
[all …]
/dports/databases/phpmyadmin/phpMyAdmin-4.9.7-all-languages/libraries/classes/Gis/
H A DGisMultiPoint.php60 = mb_substr(
90 $red = hexdec(mb_substr($point_color, 1, 2));
92 $blue = hexdec(mb_substr($point_color, 4, 2));
97 = mb_substr(
147 $red = hexdec(mb_substr($point_color, 1, 2));
154 = mb_substr(
202 = mb_substr(
261 = mb_substr(
304 = mb_substr(
331 = mb_substr(
[all …]

12345678910>>...62