什么<<

时间:2013-09-20 14:31:47

标签: php sql

<<<SQLSQL是什么意思?

    $query = <<<SQL

INSERT INTO comments
    ( content )
VALUES
    ( '$content' )

SQL;

    return mysql_query( $query ) or die( mysql_error() );
}

2 个答案:

答案 0 :(得分:4)

在这种情况下,它基本上与此相同:

$query = "
INSERT INTO comments
    ( content )
VALUES
    ( '$content' )
";

更多阅读 - http://www.php.net/manual/en/language.types.string.php#language.types.string.syntax.heredoc

答案 1 :(得分:1)

这是heredoc语法,是存储多行字符串的另一种方法。

您可以使用多种脚本语言找到它。