Sep
17
2010
|
|
| mysqli_options (PHP 5) mysqli_options(no version information, might be only in CVS) mysqli->options -- Set optionsОписаниеProcedural style: bool mysqli_options ( mysqli link, int option, mixed value )Object oriented style (method) class mysqli {bool options ( int option, mixed value ) } mysqli_options() can be used to set extra connect options and affect behavior for a connection. This function may be called multiple times to set several options. mysqli_options() should be called after mysqli_init() and before mysqli_real_connect(). The parameter option is the option that you want to set, the value is the value for the option. The parameter option can be one of the following values: Таблица 1. Valid options
Возвращаемые значенияВозвращает TRUE в случае успешного завершения или FALSE в случае возникновения ошибки. Смотрите такжеmysqli_init() и mysqli_real_connect(). ПримерыSee mysqli_real_connect(). | ||||||||||||
| Комментарии |
|