Home > Backend Development > PHP Tutorial > php 数据库中平添温度摄氏度(℃)字段是什么类型 在页面显示=需要什么设置

php 数据库中平添温度摄氏度(℃)字段是什么类型 在页面显示=需要什么设置

WBOY
Release: 2016-06-13 11:06:47
Original
1523 people have browsed it

php 数据库中添加温度摄氏度(℃)字段是什么类型 在页面显示=需要什么设置
php 在数据库表中添加一个温度摄氏度的字段是什么字段类型 在页面上显示℃时候(比如-1℃~8℃)需要什么设置吗
------解决方案--------------------
字符难道不行么?
------解决方案--------------------
你用int存储即可
显示的时候再把℃加上来
------解决方案--------------------
字段内容中包含“℃”的话用 varchar 类型
否则 int 和 varchar 都可以

℃ 只不过是个字符而已
$a = -1;
$b = 8;
echo "{$a}℃ ~ {$b}℃";

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template