Where to format numbers in CodeIgniter?

大憨熊 提交于 2019-12-07 05:09:42

问题


shell i format my numbers 1234.20 => 1'234.20 in model or in view using php and codeigniter?


回答1:


It belongs to the view layer.
The model only cares about the value, not how you present it to the user. Also, you may need to display it differently, if your site is multilingual.




回答2:


In the view, since the transformation is presentational in nature.




回答3:


I would format it in the view, because this sperates the visual from the rest.



来源:https://stackoverflow.com/questions/3237195/where-to-format-numbers-in-codeigniter

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!