update : 2015.11.03
php.shukuma.com검색:
|
SQLite3::createCollation(PHP 5 >= 5.3.11) SQLite3::createCollation — Registers a PHP function for use as an SQL collating function 설명Registers a PHP function or user-defined function for use as a collating function within SQL statements. 인수
반환값
성공 시 예제
Example #1 SQLite3::createCollation() example Register the PHP function strnatcmp() as a collating sequence in the SQLite3 database.
<?php 위 예제의 출력: default: a1 a10 a2 natural: a1 a2 a10 참고
|