解析错误:语法错误,意外'<'在第19行的/home/content/52/9623852/html/index.php中

时间:2015-08-17 18:58:01

标签: php wordpress parsing syntax syntax-error

有人可以告诉我,我做错了吗?我访问我的网站时收到的错误如下:

  

解析错误:语法错误,意外'<'在   第19行/home/content/52/9623852/html/index.php

这里是index.php的编码:

<?php
/**
* The main template file.
*/

get_header(); ?>

    <div id="primary">
    <div style="border: 2px solid #333;float: left;width: 875px;margin-top: 10px;margin-left: 15px; margin-bottom:10px;background: #ccc url(<?php bloginfo('template_url');?>/images/bgcontent.jpg) repeat-y;">
        <div id="content">
        <?php if ( have_posts() ) : ?>

            <?php twentyeleven_content_nav( 'nav-above' ); ?>

            <?php /* Start the Loop */ ?>
            <?php while ( have_posts() ) : the_post(); ?>

                <?php get_template_part( 'content', get_post_format() ); ?>

            <?php endwhile; ?>

            <?php twentyeleven_content_nav( 'nav-below' ); ?>

        <?php else : ?>

            <article id="post-0" class="post no-results not-found">
                <header class="entry-header">
                    <h1 class="entry-title"><?php _e( 'Nothing Found', 'twentyeleven' ); ?></h1>
                </header><!-- .entry-header -->

                <div class="entry-content">
                    <p><?php _e( 'Apologies, but no results were found for the requested archive. Perhaps searching will help find a related post.', 'twentyeleven' ); ?></p>
                    <?php get_search_form(); ?>
                </div><!-- .entry-content -->
            </article><!-- #post-0 -->

        <?php endif; ?>
        </div><!-- #content -->
        <?php get_sidebar(); ?>
        </div>
    </div><!-- #primary -->
<?php get_footer(); ?>

1 个答案:

答案 0 :(得分:0)

解决问题的根本方法是使用标准的调试程序:

  • 注释或删除逻辑块,直到您停止获取 语法错误,告诉您已删除错误来自的区域。
  • 如果删除某个块,但仍尝试运行该代码 报告语法错误,撤消删除,并系统地删除下一个代码块。
  • 一旦您的解析器接受删除了一个块,请尝试 删除该区域内的不同子块

你正在用眼睛看问题,虽然这是第一道防线,但只是看一下这段代码是不够的(主要是因为代码库非常脏/有些没有纪律)。

让php解析器为你完成工作,删除可能有问题的块,直到解析器停止尖叫。