Searched refs:hebrev (Results 1 – 8 of 8) sorted by relevance
/PHP-7.2/ext/standard/tests/strings/ |
H A D | hebrev_error.phpt | 2 Test hebrev() function : error conditions 6 /* Prototype : string hebrev ( string $hebrew_text [, int $max_chars_per_line ] ) 11 echo "*** Testing hebrev() : error conditions ***\n"; 13 echo "\n-- Testing hebrev() function with no arguments --\n"; 14 var_dump( hebrev() ); 18 var_dump( hebrev("Hello World", 5, $extra_arg) ); 23 *** Testing hebrev() : error conditions *** 25 -- Testing hebrev() function with no arguments -- 27 Warning: hebrev() expects at least 1 parameter, 0 given in %s on line %d 30 -- Testing hebrev() function with more than expected no. of arguments -- [all …]
|
H A D | hebrev_basic.phpt | 2 Test hebrev() function : basic functionality 6 /* Prototype : string hebrev ( string $hebrew_text [, int $max_chars_per_line ] ) 11 echo "*** Testing hebrev() : basic functionality ***\n"; 13 $hebrew_text = "The hebrev function converts logical Hebrew text to visual text.\nThe function trie… 15 var_dump(hebrev($hebrew_text)); 16 var_dump(hebrev($hebrew_text, 15)); 21 *** Testing hebrev() : basic functionality *** 22 string(109) ".The hebrev function converts logical Hebrew text to visual text 29 hebrev function
|
H A D | hebrev_variation2.phpt | 2 Test hebrev() function : usage variations - test values for $max_chars_per_line argument 6 /* Prototype : string hebrev ( string $hebrew_text [, int $max_chars_per_line ] ) 78 // loop through with each element of the $texts array to test hebrev() function 85 var_dump( hebrev($hebrew_text, $max_chars_per_line) ); 96 string(109) ".The hebrev function converts logical Hebrew text to visual text 111 string(109) ".The hebrev function converts logical Hebrew text to visual text 115 string(109) ".The hebrev function converts logical Hebrew text to visual text 119 string(109) ".The hebrev function converts logical Hebrew text to visual text 149 hebrev 178 string(109) ".The hebrev function converts logical Hebrew text to visual text [all …]
|
H A D | hebrev_variation1.phpt | 2 Test hebrev() function : usage variations - test values for $hebrew_text argument 6 /* Prototype : string hebrev ( string $hebrew_text [, int $max_chars_per_line ] ) 11 echo "*** Testing hebrev() function: with unexpected inputs for 'hebrew_text' argument ***\n"; 95 // loop through with each element of the $texts array to test hebrev() function 100 var_dump( hebrev($hebrew_text) ); 109 *** Testing hebrev() function: with unexpected inputs for 'hebrew_text' argument *** 130 Warning: hebrev() expects parameter 1 to be string, array given in %s on line %d 134 Warning: hebrev() expects parameter 1 to be string, array given in %s on line %d 138 Warning: hebrev() expects parameter 1 to be string, array given in %s on line %d 156 Warning: hebrev() expects parameter 1 to be string, resource given in %s on line %d
|
H A D | hebrevc_basic.phpt | 13 …onverts logical Hebrew text to visual text.\nThis function is similar to hebrev() with the differe… 23 ) This function is similar to hebrev() with the difference that it converts newlines<br /> 38 to hebrev()<br />
|
/PHP-7.2/ext/standard/ |
H A D | php_string.h | 60 PHP_FUNCTION(hebrev);
|
H A D | basic_functions.c | 2769 PHP_FE(hebrev, arginfo_hebrev)
|
H A D | string.c | 4343 PHP_FUNCTION(hebrev) argument
|
Completed in 45 milliseconds