Skip to content

Instantly share code, notes, and snippets.

@MilesChou
Last active January 29, 2021 14:31
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save MilesChou/d07bcf156d502d9138f784a92c16f09c to your computer and use it in GitHub Desktop.
Save MilesChou/d07bcf156d502d9138f784a92c16f09c to your computer and use it in GitHub Desktop.
Adapter function example for mysql to mysqli
<?php
if (!function_exists('mysql_connect')) {
function mysql_connect($host, $username, $password) {
mysqli_connect($host, $username, $password);
}
}
mysql_connect('127.0.0.1', 'root', 'password');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment