PHP 用户PHP的heredoc语法

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PHP 用户PHP的heredoc语法相关的知识,希望对你有一定的参考价值。

<?php
foreach ($contacts as $contact_object) {
  $contact_array = (array) $contact_object;
  foreach ($contact_array as $key=>$value) $$key = h($value);
  echo <<<END_ROW
    <tr>
      <td>$id</td>
      <td>$first_name</td>
      <td>$last_name</td>
      <td>$phone</td>
      <td>
        <a href="?action=edit&id=$id">edit</a>
        <a href="?action=delete&id=$id">delete</a>
      </td>
    </tr>
END_ROW;
}

以上是关于PHP 用户PHP的heredoc语法的主要内容,如果未能解决你的问题,请参考以下文章

PHP heredoc 用法

php字符操作

php php heredoc

php中heredoc的使用方法

php [php:在Heredoc中使用DEFINE]注意旧代码。 #PHP

PHP中的heredoc和nowdoc