1

フォームが作成された後、選択肢の項目をカウントしたい。このフィールドは、項目を作成するための query_builder を持つ単純な Symfony の選択フィールドです。どうすればこれを達成できますか?

<?php

class MyController
{
    public function indexAction()
    {
        $form = $this->createForm(new MyFormWithChoiceFieldType());

        // suppose that the field is named by "countries"
        $items = count(???);
    }
}

前もって感謝します。

4

2 に答える 2