Skip to content

通用工具 GeneralUtility

App\Utilities\GeneralUtility

列表数据转换为树结构列表

php
ExtendUtility::collectionToTree($data, $primary, $parent, $children);
参数名类型是否必传说明
dataArrayNO列表数据
primaryStringYES主键 Key
parentStringYES父级主键 Key
childrenStringYES树结构子级键 Key

根据经纬度计算距离

php
ExtendUtility::distanceOfLocation($langTag, $long, $lat, $userLong, $userLat, $mapId, $userMapId);
参数名类型是否必传说明
langTagStringYES语言标签,获取该语言的距离单位 kmmi
longStringYES经度 longitude
latStringYES纬度 latitude
userLongStringYES用户的经度
userLatStringYES用户的纬度
mapIdStringNO经纬度来自哪个地图
userMapIdStringNO用户的经纬度来自哪个地图

Released under the Apache-2.0 License