php-src/ext/mysql/tests/setupdefault.inc
2014-03-23 13:23:25 +08:00

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);
?>