Réalisées par des traducteurs professionnels, des entreprises, des pages web ou traductions disponibles gratuitement.
regexp ("number is 15."; "[0- 9] +") = "15"
regexp("number is 15. ";" [0-9]+ ") =" 15 "
Dernière mise à jour : 2011-10-23
Fréquence d'utilisation : 3
Qualité :
Avertissement : un formatage HTML invisible est présent
returns 0 if str1 is less than str2; 0 if str1 is greater than str2, and 0 if they are equal.
returns 0 if str1 is less than str2; 0 if str1 is greater than str2, and 0 if they are equal.
Dernière mise à jour : 2011-10-24
Fréquence d'utilisation : 1
Qualité :
similar to other string comparison functions, this one returns 0 if str1 is less than str2; 0 if str1 is greater than str2, and 0 if they are equal.
similar to other string comparison functions, this one returns 0 if str1 is less than str2; 0 if str1 is greater than str2, and 0 if they are equal.
Dernière mise à jour : 2011-10-24
Fréquence d'utilisation : 1
Qualité :
if arg_num is greater than the number of arguments actually passed, a warning will be generated and func_get_arg() will return false.
if arg_num is greater than the number of arguments actually passed, a warning will be generated and func_get_arg() will return false.
Dernière mise à jour : 2011-10-24
Fréquence d'utilisation : 1
Qualité :
the number is formatted according to the locale's international currency format (e.g. for the usa locale: usd 1,234.56).
usd 1,234.56).
Dernière mise à jour : 2011-10-24
Fréquence d'utilisation : 1
Qualité :
inside a character class, or if the decimal number is greater than 9 and there have not been that many capturing subpatterns, pcre re-reads up to three octal digits following the backslash, and generates a single byte from the least significant 8 bits of the value. any subsequent digits stand for themselves. for example:
thus the two patterns (?i:saturday_bar_sunday) (? :(?i)saturday_bar_sunday)thus the two patterns (?i:saturday_bar_sunday) (? :(?i)saturday_bar_sunday) match exactly the same set of strings.
Dernière mise à jour : 2011-10-24
Fréquence d'utilisation : 1
Qualité :
curlopt_failonerror: set this option to a non-zero value if you want php to fail silently if the http code returned is greater than 300. the default behavior is to return the page normally, ignoring the code.
the default behavior is to return the page normally, ignoring the code.
Dernière mise à jour : 2011-10-24
Fréquence d'utilisation : 1
Qualité :
?php // redefine the user error constants - php 4 only define ("fatal",e_user_error); define ("error",e_user_warning); define ("warning",e_user_notice); // set the error reporting level for this script error_reporting (fatal _bar_ error _bar_ warning); // error handler function function myerrorhandler ($errno, $errstr, $errfile, $errline) {switch ($errno) {case fatal: echo "b fatal /b [$errno] $errstr br \n"; echo" fatal error in line ".$errline." of file ".$errfile; echo ", php ".php_version." (".php_os.") br \n"; echo "aborting... br \n"; exit(1); break; case error: echo "b error /b [$errno] $errstr br \n"; break; case warning: echo" b warning /b [$errno] $errstr br \n"; break; default: echo "unkown error type: [$errno] $errstr br \n"; break;}} // function to test the error handling function scale_by_log ($vect, $scale) {if (!is_numeric($scale) _bar__bar_ $scale = 0) trigger_error("log(x) for x = 0 is undefined, you used: scale = $scale", fatal); if (!is_array($vect)) {trigger_error("incorrect input vector, array of values expected", error); return null;} for ($i=0; $i count($vect); $i++) {if (!is_numeric($vect[$i])) trigger_error("value at position $i is not a number, using 0 (zero)", warning); $temp[$i] = log($scale) * $vect[$i];} return $temp;} // set to the user defined error handler $old_error_handler = set_error_handler("myerrorhandler"); // trigger some errors, first define a mixed array with a non-numeric item echo "vector a\n"; $a = array(2,3,"foo",5.5,43.3,21.11); print_r($a); // now generate second array, generating a warning echo "----\nvector b - a warning (b = log(pi) * a)\n"; $b = scale_by_log($a, m_pi); print_r($b); // this is trouble, we pass a string instead of an array echo "----\nvector c - an error\n"; $c = scale_by_log("not array",2.3); var_dump($c); // this is a critical error, log of zero or negative number is undefined echo "----\nvector d - fatal error\n"; $d = scale_by_log($a, -2.5);?
?php / / redefine the user error constants - php 4 only define ("fatal",e_user_error); define ("error",e_user_warning); define ("warning",e_user_notice); / / set the error reporting level for this script error_reporting (fatal _bar_ error _bar_ warning); / / error handler function function myerrorhandler ($errno, $errstr, $errfile, $errline) {switch ($errno) {case fatal: echo "b fatal / b [$errno] $errstr br \n"; echo" fatal error in line ".$errline. "of file ".$errfile; echo", php ".php_version. "(".php_os .") br \n"; echo "aborting... br \n"; exit(1); break; case error: echo" b error / b [$errno] $errstr br \n"; break; case warning: echo "b warning / b [$errno] $errstr br \n"; break; default: echo "unkown error type: [$errno] $errstr br \n"; break;}} / / function to test the error handling function scale_by_log ($vect, $scale) {if (!is_numeric($scale) _bar_ _bar_ $scale = 0) trigger_error("log(x) for x = 0 is undefined, you used: scale = $scale", fatal); if (!is_array($vect)) {trigger_error("incorrect input vector, array of values expected", error); return null;} for ($i=0; $i count($vect); $i++) {if (!is_numeric($vect[$i])) trigger_error("value at position $i is not a number, using 0 (zero)", warning); $temp[$i] = log($scale) * $vect[$i];} return $temp;} / / set to the user defined error handler $old_error_handler = set_error_handler("myerrorhandler"); / / trigger some errors, first define a mixed array with a non-numeric item echo "vector a\n"; $a = array(2,3 ,"foo",5.5,43.3,21.11); print_r($a); / / now generate second array, generating a warning echo "----\nvector b - a warning (b = log(pi) * a)\n"; $b = scale_by_log($a, m_pi); print_r($b); / / this is trouble, we pass a string instead of an array echo "----\nvector c - an error\n"; $c = scale_by_log("not array",2.3); var_dump($c); / / this is a critical error, log of zero or negative number is undefined echo "----\nvector d - fatal error\n"; $d = scale_by_log($a, -2.5);?
Dernière mise à jour : 2011-10-24
Fréquence d'utilisation : 1
Qualité :
Avertissement : un formatage HTML invisible est présent
Certaines traductions humaines peu pertinentes ont été masquées.
Affichez les résultats peu pertinents.