Kohana 将数据库对象转换为 int
我有两个价值观。一个代表多个对象
$a = $product->count_all();
,另一个代表数据库中的一个值:
$first = Model::factory('product')->sale($sale_id)->find();
我需要两者之间的总和。第二个返回第一个满足查询条件的id。我如何将 $first 变量转换为 kohana 中的 int 或者如何计算这个总和?谢谢你!
i have two values. one represents a number of objects
$a = $product->count_all();
and the other represents a value from the database:
$first = Model::factory('product')->sale($sale_id)->find();
i need the sum between the two. the second returns the first id that satsfies the query conditions. how can i convert the $first variable to int in kohana or how can i make this sum?? thank you!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用
$_ignored_columns
:<块引用>
所以,你可以初始化它
(
$first->count = $a;
) 并获取为模型列(
$count =
)。$first->count;
在您的中创建特殊方法
get_count()
型号:
<块引用>
Use
$_ignored_columns
for it:So, you can initialize it
(
$first->count = $a;
) and get as amodel column (
$count =
).$first->count;
Create special method
get_count()
in yourmodel: