V2EX = way to explore
V2EX 是一个关于分享和探索的地方
现在注册
已注册用户请  登录
ejin
V2EX  ›  PHP

本机测试php代码无错误,但是传服务器就500错误,而且还不报告具体原因,只返回500页面,哪里错了?

  •  
  •   ejin · 2014-01-15 22:35:17 +08:00 · 5966 次点击
    这是一个创建于 3757 天前的主题,其中的信息可能已经有所发展或是发生改变。
    反复测试了很多次,实在是想不到原因,很无奈,所以来求助下
    <?php
    $filename='adblock.txt';
    @header("Content-Type content='text/html; charset=utf-8'");
    if (file_exists($filename) == false) file_put_contents($filename,"");
    if (isset($_POST['code'])) {
    $code=str_replace('<','',$_POST['code']);
    file_put_contents($filename,$code);
    @ header("Location: ?");
    exit();
    };?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title>adblock.txt编辑</title>
    <style>
    .gocode{width:100%;height:400px;background-color: #FCFCFC;border:1px #009ACE solid;font:12px tahoma;line-height:18px;}
    .input-code{font-size:9pt;background:#ECF3FC;border-top:1px solid #fff;border-right:1px solid #aaa;border-bottom:1px solid #ccc;border-left:1px solid #fff;}
    </style>
    </head>
    <body>
    <center>
    <form method='POST'>
    <textarea class="gocode" name="code"><?php echo file_get_contents($filename);?>
    </textarea>
    <br />
    <input type="submit" class="input-code" value="保存" />
    <span class="code-tishi"></span>

    </form>
    </center>


    </body>
    </html>
    4 条回复    1970-01-01 08:00:00 +08:00
    Livid
        1
    Livid  
    MOD
       2014-01-15 22:45:03 +08:00   ❤️ 1
    txlty
        2
    txlty  
       2014-01-15 22:54:01 +08:00   ❤️ 1
    @header("Content-Type content='text/html; charset=utf-8'"); 用错了!
    把这条去掉就应该好了
    ejin
        3
    ejin  
    OP
       2014-01-15 23:08:57 +08:00
    @Livid 本人水平有限…… 玩不转…… 已感谢……虽然你不缺

    @txlty 晕,果然去掉就可以了,真奇怪本地phpnow搭建的环境又能运行,好晕,感谢啦~l
    siw
        4
    siw  
       2014-01-15 23:13:34 +08:00   ❤️ 1
    Content-Type: content
    关于   ·   帮助文档   ·   博客   ·   API   ·   FAQ   ·   我们的愿景   ·   实用小工具   ·   2584 人在线   最高记录 6543   ·     Select Language
    创意工作者们的社区
    World is powered by solitude
    VERSION: 3.9.8.5 · 25ms · UTC 12:16 · PVG 20:16 · LAX 05:16 · JFK 08:16
    Developed with CodeLauncher
    ♥ Do have faith in what you're doing.