Heim  >  Artikel  >  Backend-Entwicklung  >  一个关于 include 文件 非常蹊跷的有关问题

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

WBOY
WBOYOriginal
2016-06-13 12:47:01820Durchsuche

一个关于 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
Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn