1.2.216. Conditioned Function¶
Indicates if a function is defined only if a condition is met.
<?php
// This is a conditioned function.
// it only exists if the PHP binary doesn't have it already.
if (!function_exists('join')) {
function join($glue, $array) {
return implode($glue, $array);
}
}
?>
1.2.216.1. Connex PHP features¶
1.2.216.1.1. Specs¶
Short name |
Functions/ConditionedFunctions |
Rulesets |
|
Exakat since |
0.8.4 |
PHP Version |
All |
Severity |
|
Time To Fix |
|
Precision |
Very high |
Available in |