一个关于 include 文件 非常蹊跷的有关问题

WBOY
Release: 2016-06-13 12:47:01
Original
823 people have browsed it

一个关于 include 文件 非常蹊跷的问题
各位大虾,请教一个问题:

我在写一个php的网页,所有的功能在本地 通过 localhost/../index.php访问,一切正常。
因为涉及到别人访问的问题,于是我将代码拷贝到服务器的/var/www上,结果代码运行错误,后来一看,是卡在这里了,但是不知道为什么。代码如下:


nbsp;html>

    


        
        
    
    
                 
        echo "11111111";
        include_once('./cebu_parser.php');
        eccho "2222222"
        include_once('./flight_info_2_json.php');

        $cebu_parser = new cebu_parser();

        ?>
    


在服务器上,只能运行到 echo "111111111", 查看生成的html代码如下:


nbsp;html>

    
        
        
    
    
        11111111111


也就是说代码只运行到第一句echo哪里。

我也将 include_once 替换成 include, require_once,require,都一个样子。

也尝试了 try catch的方法,但还是没有任何信息输出。

恳请各位解惑,谢谢
服务器 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