Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
245,95在我的表格中,所有价格都以格式(欧洲格式)存储为字符串。我无法改变这一点。在我的应用程序内部,我希望所有价格都是浮动的。
245,95
我可以在填充实体字段之前更改格式吗?在普通的 sql 中,我可以使用 aREPLACE并完成我想要的。
REPLACE
我一直在研究 Symfony 数据转换器,但它看起来只适用于表单。
您可以在 getter 方法中编写转换逻辑。
. . . function getPrice(){ $price = conversionLogic($this->price); return $price; } . . .