PHP语法错误,意外}

时间:2016-01-17 07:36:06

标签: php html

得到这一点PHP,我不断收到语法错误。

解析错误:语法错误,意外'}'在第22行的C:\ wamp \ www \ portfolio \ index.php

        include("pages/header.php");
            $allowed = array('about', 'header', 'index' , 'home'); // add the pagenames you need
            $page = ( isset($_GET['home']) ) ? $_GET['home'] : 'index';
            if ( in_array($allowed, $page) ){
                include("pages/$page.php");
            } 
            // else {
            //     include("pages/404.php");
            // }
        ?>

通过添加一个开头{我然后摆脱原始错误,然后面对一个包含此信息的表: 的

#   Time    Memory  Function    Location
1   0.0003  241728  {main}( )   ..\index.php:0
2   0.0004  243232  in_array ( )    ..\index.php:20

不确定这些值是什么意思或如何纠正问题。

0 个答案:

没有答案