thinkphp怎么插入point字段类型的数据
时间: 2024-05-02 22:19:23 浏览: 213
完美解决Thinkphp3.2中插入相同数据的问题
您可以使用如下代码向 point 字段类型插入数据:
```
// 假设 point 字段为 point(10, 5) 类型
$longitude = 116.405285; // 经度
$latitude = 39.904989; // 纬度
DB::table('your_table')->insert(['location' => DB::raw("ST_GeomFromText('POINT({$longitude} {$latitude})')")]);
```
这里使用了 Laravel 中 DB 类的 `insert` 方法和 `raw` 方法,和 MySQL 中的 `ST_GeomFromText` 函数来插入 point 类型的数据。
阅读全文