你们有没有碰到过这个有关问题

WBOY
Release: 2016-06-13 10:18:46
Original
726 people have browsed it

你们有没有碰到过这个问题?
我的数据库连接代码写在conn.php里面,用的时候我直接include("conn.php"); 引用!

可是我发现在引用php文件的时候会占用一定的网页布局空间,然后我不引用,直接输入连接数据库代码就没事!

你们有没有碰到过这个问题?下面是我conn.php里面的内容!

  @mysql_connect("localhost:3306","root","")or die("mysql连接失败");
  @mysql_select_db("hu0010")or die("db连接失败");
  mysql_query("set names 'utf-8'");


这是直接输入代码显示的结果,没有空白!


这是引用显示的结果,有空白!

很明显空白出来很多,到底怎么回事啊?

------解决方案--------------------
可能是 BOM 头引起的,也可能 conn.php 有输出
------解决方案--------------------
你查看一下源代码,看下空格是什么导致的

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
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!