Home > Backend Development > PHP Tutorial > 标题 php学习遇到的问题

标题 php学习遇到的问题

WBOY
Release: 2016-06-23 13:36:17
Original
903 people have browsed it

页面包含后顶部有空白

include("../index.php");

?>

页面包这个后,头部有空白,

解决方法是将被包含的文件index.php编码方式转为utf-8无BOM


变量计算

 $multiple = 14/5;      //multiple =2.8

 $multiple = intval(14/5);      //multiple =2

 要得到想要的int值,需要用intval转换


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