Skip to content

Instantly share code, notes, and snippets.

@carstingaxion
Created January 5, 2023 23:14
Show Gist options
  • Save carstingaxion/a78ea7ca87dd1bcb0b411546d3605fb7 to your computer and use it in GitHub Desktop.
Save carstingaxion/a78ea7ca87dd1bcb0b411546d3605fb7 to your computer and use it in GitHub Desktop.
Check for sqlite3 extension
<?php
if ( class_exists('SQLite3') ) {
echo 'SQLite3 class loaded'. "\n\n";
}
if ( extension_loaded('sqlite3') ) {
echo 'sqlite3 extension loaded'. "\n\n";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment