Skip to content

Heredoc 与 Nowdoc

概述

Heredoc 和 Nowdoc 是 PHP 中处理多行字符串的两种语法。Heredoc 类似于双引号字符串,支持变量解析;Nowdoc 类似于单引号字符串,不进行任何解析。它们在处理 SQL 查询、HTML 模板、JSON 数据等大块文本时非常实用。

前置知识

在阅读本节之前,你需要了解:

  • 单引号与双引号字符串的区别
  • 变量解析的基本规则
  • PHP 7.3+ 的缩进处理改进

基础概念

Heredoc vs Nowdoc

特性HeredocNowdoc
起始标识<<<IDENTIFIER<<<'IDENTIFIER'
变量解析支持不支持
转义序列支持不支持
等价于双引号字符串单引号字符串
PHP 版本全部PHP 5.3+

语法与代码

Heredoc 基本语法

php
<?php
declare(strict_types=1);

$name = 'World';

$html = <<<HTML
    <div class="container">
        <h1>Welcome</h1>
        <p>Hello, {$name}!</p>
    </div>
HTML;

echo $html;

Nowdoc 基本语法

php
<?php
declare(strict_types=1);

$template = <<<'TEMPLATE'
    Dear {$name},

    Thank you for your purchase.

    Order #{$orderId}
TEMPLATE;

// 输出的是字面文本,变量不会被替换
echo $template;

PHP 7.3+ 缩进处理

php
<?php
declare(strict_types=1);

// PHP 7.3+:结束标识可以缩进
$sql = <<<SQL
    SELECT id, name, email
    FROM users
    WHERE status = :status
SQL;

// 结束标识的缩进量会被去除

变量解析规则

php
<?php
declare(strict_types=1);

class User
{
    public function __construct(
        public readonly string $name = 'Guest',
        public readonly int $age = 0,
    ) {}
}

$user = new User(name: 'Alice', age: 30);

$html = <<<HTML
    <h1>Simple: $user->name</h1>
    <h2>Complex: {$user->name}</h2>
    <p>Math: {$user->age * 2}</p>
    <p>Expression: {date('Y-m-d')}</p>
HTML;

详细说明

应用场景

php
<?php
declare(strict_types=1);

// SQL 查询
$sql = <<<SQL
    INSERT INTO orders (user_id, total, status)
    VALUES (:userId, :total, :status)
SQL;

// JSON 模板
$json = <<<JSON
    {
        "name": "{$userName}",
        "timestamp": "{$timestamp}"
    }
JSON;

// HTML 邮件模板
$email = <<<HTML
    <!DOCTYPE html>
    <html>
    <body>
        <h1>你好, {$userName}!</h1>
        <p>感谢你注册我们的服务。</p>
    </body>
    </html>
HTML;

嵌套使用

php
<?php
declare(strict_types=1);

$pageTitle = '首页';
$content = '<p>欢迎</p>';

$page = <<<HTML
    <!DOCTYPE html>
    <html lang="zh">
    <head><title>{$pageTitle}</title></head>
    <body>{$content}</body>
    </html>
HTML;

实战示例

SQL 构建器使用 Heredoc

php
<?php
declare(strict_types=1);

class QueryBuilder
{
    private array $selects = ['*'];
    private array $wheres = [];
    private array $params = [];
    private ?int $limit = null;

    public function select(string ...$columns): self
    {
        $this->selects = $columns;
        return $this;
    }

    public function where(string $column, mixed $value): self
    {
        $paramName = 'p' . count($this->params);
        $this->wheres[] = "{$column} = :{$paramName}";
        $this->params[$paramName] = $value;
        return $this;
    }

    public function limit(int $limit): self
    {
        $this->limit = $limit;
        return $this;
    }

    public function toSql(): string
    {
        $sql = <<<SQL
            SELECT {implode(', ', $this->selects)}
            FROM users
SQL;
        if (!empty($this->wheres)) {
            $sql .= " WHERE " . implode(" AND ", $this->wheres);
        }
        if ($this->limit !== null) {
            $sql .= " LIMIT {$this->limit}";
        }
        return $sql;
    }
}

$query = new QueryBuilder();
$query->select('id', 'name')
      ->where('status', 'active')
      ->limit(10);

echo $query->toSql();

注意事项

1. 结束标识的规则

  • 结束标识必须单独一行
  • PHP 7.3+:结束标识前的缩进会被去除
  • 结束标识后的换行符不被包含在字符串中

2. Heredoc 中的转义

php
<?php
declare(strict_types=1);

$html = <<<HTML
    <p>Price: \$100</p>
    <p>Path: C:\\Users\\alice</p>
    <p>Line1\nLine2</p>
HTML;
// \$ → $,\\ → \,\n → 换行符

最佳实践

  1. 长文本用 Heredoc:替代多个字符串拼接
  2. 不需要解析用 Nowdoc:避免意外的变量替换
  3. 利用 PHP 7.3+ 缩进:保持代码格式整洁
  4. 命名标识符有意义:使用大写有语义的名称

下一节

下一节将详细介绍 array 数组类型。

进阶用法

调试与测试技巧

php
<?php
declare(strict_types=1);

// 单元测试辅助函数
function createTestResource(): mixed
{
    return match (true) {
        default => new stdClass(),
    };
}

// 调试输出函数
function debugOutput(mixed , string  = ''): void
{
     =  ? ": " : '';
     .= print_r(, true);
    fwrite(STDERR,  . "\n");
}

// 性能基准测试
function benchmark(callable , int  = 1000): float
{
     = hrtime(true);
    for ($i = 0; $i < $iterations; $i++) {
        $fn();
    }
    return (hrtime(true) - $start) / 1e9;
}

日志记录实践

php
<?php
declare(strict_types=1);

/**
 * 简易日志记录器
 */
class SimpleLogger
{
    private string $logFile;
    private string $level = 'INFO';

    public function __construct(string $logFile)
    {
        $this->logFile = $logFile;
    }

    public function info(string $message, array $context = []): void
    {
        $this->log('INFO', $message, $context);
    }

    public function warning(string $message, array $context = []): void
    {
        $this->log('WARNING', $message, $context);
    }

    public function error(string $message, array $context = []): void
    {
        $this->log('ERROR', $message, $context);
    }

    private function log(string $level, string $message, array $context): void
    {
        $timestamp = date('Y-m-d H:i:s');
        $contextStr = $context ? ' ' . json_encode($context, JSON_UNESCAPED_UNICODE) : '';
        $line = "[{$timestamp}] [{$level}] {$message}{$contextStr}\n";
        file_put_contents($this->logFile, $line, FILE_APPEND | LOCK_EX);
    }
}

配置与环境检测

php
<?php
declare(strict_types=1);

// 环境检测工具
class EnvironmentChecker
{
    public static function checkRequirements(array $requirements): array
    {
        $results = [];
        foreach ($requirements as $name => $check) {
            $results[$name] = is_callable($check) ? $check() : false;
        }
        return $results;
    }

    public static function getSystemInfo(): array
    {
        return [
            'php_version' => PHP_VERSION,
            'os' => PHP_OS,
            'sapi' => PHP_SAPI,
            'memory_limit' => ini_get('memory_limit'),
            'max_execution_time' => ini_get('max_execution_time'),
            'loaded_extensions' => get_loaded_extensions(),
        ];
    }
}

常见问题排查

问题可能原因解决方案
连接超时网络问题/配置错误检查配置,增加超时时间
权限不足文件/目录权限使用 chmod/chown 修正
性能下降索引缺失/数据量大添加索引,优化查询
数据不一致并发冲突/事务残留使用锁机制和事务
内存溢出大数据集/未释放资源增大内存限制,分批处理

故障排除步骤

  1. 检查错误日志和异常信息
  2. 确认配置和环境是否正确
  3. 使用调试工具逐步排查
  4. 参考官方文档查找已知问题

版本兼容性说明

功能最低版本说明
基础功能PHP 8.1本文档基准版本
只读属性PHP 8.1public readonly 修饰符
枚举类型PHP 8.1enum 类型和 match 表达式
FiberPHP 8.1协程/轻量级并发
命名参数PHP 8.0foo(arg_name: value)
联合类型PHP 8.0`int
Null 安全运算符PHP 8.0$obj?->method()
析构器 promotionPHP 8.0__construct(public $x)
php
<?php
declare(strict_types=1);

// 版本兼容性检测
function ensureVersion(string $minVersion): void
{
    if (version_compare(PHP_VERSION, $minVersion, '<')) {
        throw new RuntimeException(
            sprintf('需要 PHP %s+, 当前版本: %s', $minVersion, PHP_VERSION)
        );
    }
}

ensureVersion('8.1.0');

参考链接