ComboBox gibi bileşenleri kullanırken bind kullanımı büyük kolaylıklar sağlaya bilir. bileşenlerin bind niteliği nesne ya da dizi kabul eder. bind eğer nesneler ile kullanılacaksa nesnelerin __toString metodunu ovride etmesi gerekir.
Örnek Bind
<faces> <@import prefix="f" taglib="phpf.ui.combobox"/> <f:combobox name="combo" bind="array(1,2,3,Bora,Huseyin)"/> </f:combobox> </faces>
<faces> <@import prefix="f" taglib="phpf.ui.combobox"/> <f:combobox name="combo" bind="$this.users"/> </f:combobox> </faces>













