ZF-11931: Missing closing bracket in code example
Description
Missing closing bracket of if-clause in code example #6 of Normalization and Localization: http://framework.zend.com/manual/en/…
corrected:
$locale = new Zend_Locale();
if (Zend_Locale_Format::isNumber('13.445,36', array('locale' => 'de_AT'))) {
print "Number";
} else {
print "not a Number";
}
Comments
No comments to display