php“>”没有问号的行为就像“?>”

时间:2012-08-30 14:18:46

标签: php html

我有一个页面,页脚中有一个脚本。

<?php
    require_once('../autoloader.php');
    $feed = new SimplePie();
    $feed->set_feed_url('http://simplepie.org/blog/feed/');
    ...
?>

然后,当我将其上传到服务器时,我会看到:

set_feed_url('http://simplepie.org/blog/feed/'); $feed->init(); $feed->handle_content_type(); print 'test'; ?> 

我也安装了一个phpBB论坛,它就像魅力一样。所以&gt;有效吗?&gt;在我的代码中。我在该页面上没有更多的PHP,并且评论该行没有任何帮助。我也尝试添加echo和print,但它没有用。所以PHP版本5.2.17正在运行......我不知道问题是什么以及如何解决它...请帮帮我。

P.S。我知道这件事会解决它的一半:

<?php
    require_once('../autoloader.php');
    $feed = new SimplePie();

    $function = set_feed_url('http://simplepie.org/blog/feed/');
    call_user_func(array($feed), $function);

    $function = init();
    call_user_func(array($feed), $function);

    $function = handle_content_type();
    call_user_func(array($feed), $function);
?>

1 个答案:

答案 0 :(得分:5)

听起来PHP根本没有在文件上运行,浏览器将<?php blah >解释为未知标记。