PDO::sqliteCreateCollation - Registers a User Defined Function for use as a collating function in SQL statements
Вернуться к: SQLite (PDO)
PDO::sqliteCreateCollation
(PHP 5 >= 5.3.11, PHP 7)
PDO::sqliteCreateCollation — Registers a User Defined Function for use as a collating function in SQL statements
Описание
Эта функция является ЭКСПЕРИМЕНТАЛЬНОЙ. Поведение этой функции, ее имя и относящаяся к ней документация могут измениться в последующих версиях PHP без уведомления. Используйте эту функцию на свой страх и риск.
Список параметров
-
name
-
Name of the SQL collating function to be created or redefined.
-
callback
-
The name of a PHP function or user-defined function to apply as a callback, defining the behavior of the collation. It should accept two strings and return as strcmp() does, i.e. it should return -1, 1, or 0 if the first string sorts before, sorts after, or is equal to the second.
This function need to be defined as:
int collation ( string$string1
, string$string2
)
Возвращаемые значения
Возвращает TRUE
в случае успешного завершения или FALSE
в случае возникновения ошибки.
Примеры
Пример #1 PDO::sqliteCreateCollation() example
<?php
$db = new PDO('sqlite::memory:');
$db->exec("CREATE TABLE test (col1 string)");
$db->exec("INSERT INTO test VALUES ('a1')");
$db->exec("INSERT INTO test VALUES ('a10')");
$db->exec("INSERT INTO test VALUES ('a2')");
$db->sqliteCreateCollation('NATURAL_CMP', 'strnatcmp');
foreach ($db->query("SELECT col1 FROM test ORDER BY col1") as $row) {
echo $row['col1'] . "\n";
}
echo "\n";
foreach ($db->query("SELECT col1 FROM test ORDER BY col1 COLLATE NATURAL_CMP") as $row) {
echo $row['col1'] . "\n";
}
?>
Результат выполнения данного примера:
a1 a10 a2 a1 a2 a10
Примечания
Замечание:
This method is not available with the SQLite2 driver. Use the old style sqlite API for that instead.
Вернуться к: SQLite (PDO)