mirror of
https://github.com/php/pecl-database-mysql.git
synced 2026-03-24 07:02:07 +01:00
Further history before this can be found in the php-src repository: the PRE_PHP7_EREG_MYSQL_REMOVALS tag indicates the last commit before this extension was removed.
11 lines
333 B
PHP
11 lines
333 B
PHP
<?php
|
|
|
|
// copy variables from connect.inc into mysql default connection ini settings, so that implicit mysql_connect() behaviour can be tested where needed
|
|
// must be loaded AFTER connect.inc
|
|
|
|
ini_set('mysql.default_host', $host . ":" . $port);
|
|
ini_set('mysql.default_user', $user);
|
|
ini_set('mysql.default_password', $passwd);
|
|
|
|
?>
|