Index: en/reference/sqlite3/versions.xml
--- en/reference/sqlite3/versions.xml
+++ en/reference/sqlite3/versions.xml
@@ -9,6 +9,7 @@
  <function name='SQLite3::changes' from='PHP 5 &gt;= 5.3.0'/>
  <function name='SQLite3::close' from='PHP 5 &gt;= 5.3.0'/>
  <function name='SQLite3::createAggregate' from='PHP 5 &gt;= 5.3.0'/>
+ <function name='SQLite3::createCollation' from='PHP 5 &gt;= 5.4.0'/>
  <function name='SQLite3::createFunction' from='PHP 5 &gt;= 5.3.0'/>
  <function name='SQLite3::escapeString' from='PHP 5 &gt;= 5.3.0'/>
  <function name='SQLite3::exec' from='PHP 5 &gt;= 5.3.0'/>

Index: en/reference/sqlite3/sqlite3/createcollation.xml
--- en/reference/sqlite3/sqlite3/createcollation.xml
+++ en/reference/sqlite3/sqlite3/createcollation.xml
@@ -0,0 +1,142 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- $Revision: 299459 $ -->
+
+<refentry xml:id="sqlite3.createcollation" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
+ <refnamediv>
+  <refname>SQLite3::createCollation</refname>
+  
+  <refpurpose>Registers a PHP function for use as an SQL collating function</refpurpose>
+ </refnamediv>
+ 
+ <refsect1 role="description">
+  &reftitle.description;
+  <methodsynopsis>
+   <modifier>public</modifier> <type>bool</type><methodname>SQLite3::createCollation</methodname>
+   <methodparam><type>string</type><parameter>name</parameter></methodparam>
+   <methodparam><type>callable</type><parameter>callback</parameter></methodparam>
+  </methodsynopsis>
+  <para>
+   Registers a PHP function or user-defined function for use as a collating
+   function within SQL statements.
+  </para>
+ </refsect1>
+ 
+ <refsect1 role="parameters">
+  &reftitle.parameters;
+  <variablelist>
+   <varlistentry>
+    <term><parameter>name</parameter></term>
+    <listitem>
+     <para>
+      Name of the SQL collating function to be created or redefined
+     </para>
+    </listitem>
+   </varlistentry>
+   <varlistentry>
+    <term><parameter>callback</parameter></term>
+    <listitem>
+     <para>
+      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 <function>strcmp</function> does, i.e. it should return -1, 1,
+      or 0 if the first string sorts before, sorts after, or is equal to the second.
+     </para>
+    </listitem>
+   </varlistentry>
+  </variablelist>
+ </refsect1>
+ 
+ <refsect1 role="returnvalues">
+  &reftitle.returnvalues;
+  <para>
+   &return.success;
+  </para>
+ </refsect1>
+ 
+ <refsect1 role="examples">
+  &reftitle.examples;
+  <para>
+   <example>
+    <title><function>SQLite3::createCollation</function> example</title>
+    <para>
+     Register the PHP function <function>strnatcmp</function> as a collating sequence in the SQLite3 database.
+    </para>
+    <programlisting role="php">
+<![CDATA[
+<?php
+
+$db = new SQLite3(":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->createCollation('NATURAL_CMP', 'strnatcmp');
+
+$defaultSort = $db->query("SELECT col1 FROM test ORDER BY col1");
+$naturalSort = $db->query("SELECT col1 FROM test ORDER BY col1 COLLATE NATURAL_CMP");
+
+echo "default:\n";
+while ($row = $defaultSort->fetchArray()){
+  echo $row['col1'], "\n";
+}
+
+echo "\nnatural:\n";
+while ($row = $naturalSort->fetchArray()){
+  echo $row['col1'], "\n";
+}
+
+$db->close();
+
+?>
+]]>
+    </programlisting>
+    &example.outputs;
+    <screen>
+<![CDATA[
+
+default:
+a1
+a10
+a2
+
+natural:
+a1
+a2
+a10
+
+]]>
+    </screen>
+   </example>
+  </para>
+ </refsect1>
+ 
+ <refsect1 role="seealso">
+  &reftitle.seealso;
+  <simplelist>
+   <member>The SQLite collation documentation: <link xlink:href="&url.sqlite.collation;">&url.sqlite.collation;</link></member>
+  </simplelist>
+ </refsect1>
+ 
+</refentry>
+
+<!-- Keep this comment at the end of the file
+Local variables:
+mode: sgml
+sgml-omittag:t
+sgml-shorttag:t
+sgml-minimize-attributes:nil
+sgml-always-quote-attributes:t
+sgml-indent-step:1
+sgml-indent-data:t
+indent-tabs-mode:nil
+sgml-parent-document:nil
+sgml-default-dtd-file:"~/.phpdoc/manual.ced"
+sgml-exposed-tags:nil
+sgml-local-catalogs:nil
+sgml-local-ecat-files:nil
+End:
+vim600: syn=xml fen fdm=syntax fdl=2 si
+vim: et tw=78 syn=sgml
+vi: ts=1 sw=1
+-->
\ No newline at end of file

Index: doc-base/entities/global.ent
--- doc-base/entities/global.ent
+++ doc-base/entities/global.ent
@@ -523,6 +523,7 @@
 <!ENTITY url.spplus "http://www.spplus.net/">
 <!ENTITY url.sqlite "http://sqlite.org/">
 <!ENTITY url.sqlite.interface.c "http://sqlite.org/c_interface.html">
+<!ENTITY url.sqlite.collation "http://sqlite.org/datatype3.html#collation">
 <!ENTITY url.sqlsrv "http://msdn.microsoft.com/en-us/sqlserver/ff657782.aspx">
 <!ENTITY url.sqlsrv.connection.options "http://msdn.microsoft.com/en-us/library/ff628167.aspx">
 <!ENTITY url.sqlsrv.connection.pooling "http://msdn.microsoft.com/en-us/library/cc644930.aspx">
