PHP输入中的意外字符:'''(ASCII = 39)

我的一位朋友在她的所有网站上都收到了这个错误。 他们都在同一台服务器上,外部托管(托管公司表示他们不能帮助解决脚本问题。)

每个网站甚至给出了确切的一些行号,但他们都使用不同的Index.php文件。 我有点难过,有没有人看过这样的事情?

Warning: Unexpected character in input: ''' (ASCII=39) state=1 in /home/xxxx/public_html/index.php on line 17

Parse error: syntax error, unexpected '.' in /home/xxxx/public_html/index.php on line 17

这里是index.php文件的内容之一,第1 - 25行左右

<?php get_header(); ?>
<link rel="shortcut icon" href="favicon.ico" >

<div class="left-navi-blog">

    <?php include "left-sidebar.php";?>

</div>

<div class="center-blog">
<?php if (have_posts()) : ?>


        <?php while (have_posts()) : the_post(); ?>

<div class="post-title">
<strong><a id="post-<?php the_ID(); ?>" href="<?php the_permalink() ?>" rel="bookmark" title=" <?php the_title(); ?>"><?php the_title(); ?></a></strong> - 

                      <ahh class="post-title-meta"><?php the_time('F j, Y') ?> by 

                             <?php the_author() ?></ahh>
</div>

实际上你的网站被黑客入侵。 它也发生在我身上。 所有的PHP文件都受到影响。 确保你有非常安全的密码。 检查你的ftp日志。 可能会有大量的下载和上传。 他们插入一些iframe ..在许多PHP文件。

链接地址: http://www.djcxy.com/p/69471.html

上一篇: PHP Unexpected character in input: ‘’’ (ASCII=39)

下一篇: Parse error: syntax error, unexpected '*'