1
0
mirror of https://github.com/php/php-src.git synced 2026-03-24 16:22:37 +01:00
Files
2024-01-11 23:22:41 +01:00

17 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;
}