I'm still developing a symfony2 application, and when I try to submit an embedded form, I get
Fatal error: Call to a member function setAttribute() on a non-object in C:\wamp\www\Symfony\vendor\symfony\src\Symfony\Component\Form\Extension\Core\DataTransformer\NumberToLocalizedStringTransformer.php on line 130
Some basic NumberFormatter code :
$fmt = new NumberFormatter( locale_get_default(), NumberFormatter::DECIMAL );
echo $fmt->format(123.123123);
In fact, I can't even construct a NumberFormatter object despite the fact I've enabled intl. I am currently working on WAMP 2.2c
Conf :
PHP 5.3.9 intl 1.1.0.0
Any idea ? Thanks.