dismiss Step into the future! Click here to switch to the beta php.net site
downloads | documentation | faq | getting help | mailing lists | licenses | wiki | reporting bugs | php.net sites | conferences | my php.net

search for in the

sqlite_next> <sqlite_libencoding
[edit] Last updated: Fri, 28 Jun 2013

view this page in

sqlite_libversion

(PHP 5 < 5.4.0, PECL sqlite >= 1.0.0)

sqlite_libversionReturns the version of the linked SQLite library

Description

string sqlite_libversion ( void )

Returns the version of the linked SQLite library.

Return Values

Returns the library version, as a string.

See Also



add a note add a note User Contributed Notes sqlite_libversion - [1 notes]
up
0
jwzumwalt at neatinfo dot com
2 years ago
Simple Example

<html>
<body>
<span style="color:navy; font-size:larger;">Supported <i>PHP Data Object</i> (PDO) drivers.</span>
<blockquote>
   <?php
  
foreach(PDO::getAvailableDrivers() as $driver)
       {
       echo
$driver.'<br />';
       }
      
?>
</blockquote>

<span style="color:navy; font-size:larger;">SQLite version.</span>
<blockquote>
   <?php echo sqlite_libversion(); ?>
</blockquote>

<span style="color:navy; font-size:larger;">PHP version.</span>
<blockquote>
   <?php echo phpversion(); ?>
</blockquote>
</body>
</html>

 
show source | credits | stats | sitemap | contact | advertising | mirror sites