mirror of
https://github.com/php/php-src.git
synced 2025-01-08 20:17:28 +08:00
also test shared builds
This commit is contained in:
parent
4b87d8360e
commit
02d0f72596
@ -2,6 +2,9 @@
|
||||
|
||||
/* default values are localhost, root and empty password
|
||||
Change the values if you use another configuration */
|
||||
if (!extension_loaded('mysqli')) {
|
||||
@dl('mysqli.so');
|
||||
}
|
||||
|
||||
$driver = new mysqli_driver;
|
||||
|
||||
|
@ -1,4 +1,8 @@
|
||||
<?php
|
||||
if (!extension_loaded('mysqli'))
|
||||
die('skip mysqli extension not available');
|
||||
if (!extension_loaded('mysqli')){
|
||||
@dl('mysqli.so');
|
||||
if (!extension_loaded('mysqli')) {
|
||||
die('skip mysqli extension not available');
|
||||
}
|
||||
}
|
||||
?>
|
||||
|
Loading…
Reference in New Issue
Block a user