mirror of
https://github.com/php/php-src.git
synced 2025-08-16 05:58:45 +02:00

RFC: https://wiki.php.net/rfc/pdo_driver_specific_subclasses Closes GH-12804 Co-Authored-By: Danack <Danack@basereality.com>
16 lines
332 B
PHP
16 lines
332 B
PHP
<?php
|
|
|
|
function getSpatialiteExtensionLocation() {
|
|
$locations = [
|
|
'/usr/lib/aarch64-linux-gnu/mod_spatialite.so',
|
|
"/usr/lib/x86_64-linux-gnu/mod_spatialite.so"
|
|
];
|
|
|
|
foreach ($locations as $location) {
|
|
if (file_exists($location)) {
|
|
return $location;
|
|
}
|
|
}
|
|
|
|
return null;
|
|
}
|