PHP代码被注释掉了

时间:2013-09-18 19:57:45

标签: php html

我正在使用安装了apache的CentOS 6.4。我有一个名为cmsSearch.php的php文件。在文件的顶部,我有PHP执行正常(查询Sphinx搜索索引)。但是,当我在控制台(Chrome)中查看页面时,我尝试在下面的HTML中运行的任何php(尝试运行foreach并使用Sphinx搜索的结果填充表格)都会被注释掉。这是整个cmsSearch.php文件:

<?php
require("sphinxapi.php");

if($_POST['keyword'])
{
$keyword = $_POST['keyword'];
$client = new SphinxClient();
$client->SetMatchMode(SPH_MATCH_ANY);
$result = $client->Query($keyword, "staffDirectoryMember");

if(!$result)
{
    print "ERROR: " . $client->GetLastError();
}
else
{
    var_dump($result["matches"]);
}
}
?>

<!DOCTYPE html>
<html>
<head>
<title>Sphinx Test</title>

<style>
.container
{
    border: solid 1px black;
    height: 350px;
    width: 700px;
    margin: auto;
    padding: 5px;
}
.output
{
    margin-top:20px;
    border: solid 1px red;
    height: 200px;
}
</style>
</head>
<body>
<?echo "TEST"; ?>
<div class="container">
    <div>
        <form method="post" action="cmsSearch.php">
            <input type="text" name="keyword">
            <input type="submit" value="Search">
        </form>
        <div class="output">
            <? echo "test2"; ?>
            <table>
                <thead>
                    <tr>
                        <th>ID</th>
                        <th>Weight</th>
                        <th>ClientId</th>
                        <th>DomainId</th>
                        <th>ContentTypeId</th>
                    </tr>
                </thead>
                <tbody>
                <?
                    echo "Above for loop";
                    foreach($result["matches"] as $match)
                    {
                    echo "Print from for loop:";
                    var_dump($match);   
                    ?>
                    <!-- <tr>
                        <td><?=$match[id]?></td>
                        <td><?=$match[weight]?></td>
                        <td><?=$match[attrs][clientid]?></td>
                        <td><?=$match[attrs][domainid]?></td>
                        <td><?=$match[attrs][contenttypeid]?></td>
                    </tr> -->
                    <?}
                    echo "After for loop";
                    ?>
                </tbody>
            </table>
        </div>
    </div>
</div>

不确定为什么php执行得很好(我可以回显并且var转储工作),但是然后放在HTML中的任何php只显示为注释而不执行任何操作。有人有想法吗?

2 个答案:

答案 0 :(得分:4)

HTML中包含的PHP使用short tags,可以在 php.ini 文件中关闭。如果您想使用它,请查看此指令并确保将其设置为 true

short_open_tag true

http://www.php.net/manual/en/ini.core.php#ini.short-open-tag

答案 1 :(得分:1)

尝试使用<?php启动PHP块,而不是<? ...这是代码块之间的区别。