0

这是我的表格

<?php
namespace Home\Form;

use Zend\Form\Form;

class CheckPriceForm extends Form
{

    public function __construct($name = null)
    {
        parent::__construct();

        $this->add(array(
            'name' => 'distance',
            'type' => 'Zend\Form\Element\Number',
            'options' => array(
                'label' => 'Distance',
            ),
        ));

        $this->add(array(
            'name' => 'weight',
            'type' => 'Zend\Form\Element\Number',
            'options' => array(
                'label' => 'Weight',
            ),
        ));

        $this->add(array(
            'name' => 'submit',
            'type' => 'Submit',
            'attributes' => array(
                'value' => 'Check Price',                
            ),
        ));
    }
}

这是给出以下错误

/home/dinuka/workspace/free_courier/vendor/ZF2/library/Zend/I18n/Validator/Float.php:49

Zend\I18n\Validator component requires the intl PHP extension

当我将电子邮件替换为数字时,它正在工作。请帮我。

4

1 回答 1

5

您的服务器上缺少 intl 扩展名。所以你需要安装它。

如果您使用的是 Linux,请尝试使用以下命令

sudo apt-get install php5-intl

然后您需要重新启动 Apache

sudo 服务 apache2 重启

对于 Windows

https://stackoverflow.com/a/1451770/1508276

于 2015-01-16T09:56:49.880 回答