PHP & HTML:如何在连接的 PHP 字符串变量中包含 .php

PHP & HTML: How to include .php in concatenated PHP string var

我正在尝试做的事情的例子:

<?php
 $html_element = '<form><label>country</label><select>'.include_once("country_list.php").'</select></form>';
?>

我已经尝试了上面和下面的方法:

<?php
 $html_element = '<form><label>country</label><select><?php include_once("country_list.php"); ?></select></form>';
?>

当然,“$html_element”稍后会在某些 div 中回显。那么我怎样才能在这个 php 字符串变量中包含 "country_list.php" 以便它正确地拉动?

如果要包含数据,无论是哪种文件类型,都可以这样做:

<?php
 $html_element = '<form><label>country</label><select>'.file_get_contents("country_list.php").'</select></form>';
?>