|
SQLite3::createFunction(PHP 5 >= 5.3.0) SQLite3::createFunction — Registers a PHP function for use as an SQL scalar function Описание
public bool SQLite3::createFunction
( string $name
, mixed $callback
[, int $argument_count = -1
] )
Registers a PHP function or user-defined function for use as an SQL scalar function for use within SQL statements. Список параметров
Возвращаемые значенияReturns TRUE upon successful creation of the function, FALSE on failure. Примеры
Пример #1 SQLite3::createFunction() example
<?php Результатом выполнения данного примера будет что-то подобное: string(32) "098f6bcd4621d373cade4e832627b4f6" |
|