How to get Laravel Query Builder result as integer(如何将 Laravel Query Builder 结果作为整数获取)
问题描述
我使用 Laravel Query Builder 查询 MySQL 数据库,但它返回整数值作为字符串值.
I'm using Laravel Query Builder to query MySQL database but it returns integer values as string values.
我有以下查询.
$query = DB::table('store_products')->select('products.id', 'products.name', 'products.unit_type', 'products.price', 'products.image_path', 'products.is_popular', 'store_products.price AS store_price')
->join('products', 'products.id', '=', 'store_products.product_id')
->join('product_categories', 'product_categories.product_id', '=', 'store_products.product_id')
->where('store_products.store_id', $store_id)
->where('store_products.product_id', $product_id);
此处查询获取存在于 Store_Products
中的 Product,用于给定 store_id
.
Here the query gets Product which is existing in Store_Products
for given store_id
.
问题是,当我使用查询生成器时,它返回 id
(这是产品的主键)作为 string
.演员表好像有问题.
The problem is, it returns id
(which is the Primary Key for Product) as string
when I use Query Builder. Looks like there is something wrong with casts.
我该如何解决这个问题?
How can I solve this problem?
非常感谢您.
推荐答案
强制转换不是解决方案,而是解决问题的方法.您的实际问题是缺少 mysqlnd
插件.
Casting is not a solution but a workaround to the problem. Your actual problem is missing mysqlnd
plugin.
检查mysqlnd
是否像这样安装
$ sudo dpkg -l | grep 'mysqlnd'
如果没有安装,你需要像这样安装(假设你有php5)
If it's not installed, you need to install it like so (assuming you have php5)
$ sudo apt-get install php5-mysqlnd
这些命令适用于 ubuntu.如果您还有其他东西,只需将它们转换为您合适的操作系统即可.
These commands are for ubuntu. If you have something else, just convert them to your appropriate OS.
这篇关于如何将 Laravel Query Builder 结果作为整数获取的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何将 Laravel Query Builder 结果作为整数获取
- 使用 GD 和 libjpeg 支持编译 PHP 2022-01-01
- Laravel 5:Model.php 中的 MassAssignmentException 2021-01-01
- Oracle 即时客户端 DYLD_LIBRARY_PATH 错误 2022-01-01
- 如何从数据库中获取数据以在 laravel 中查看页面? 2022-01-01
- openssl_digest vs hash vs hash_hmac?盐与盐的区别HMAC? 2022-01-01
- 如何使用 Google API 在团队云端硬盘中创建文件夹? 2022-01-01
- PHP foreach() 与数组中的数组? 2022-01-01
- PHP - if 语句中的倒序 2021-01-01
- 覆盖 Magento 社区模块控制器的问题 2022-01-01
- 如何在 Symfony2 中正确使用 webSockets 2021-01-01