我有一个存储表单 HTML 代码的变量,但我想在里面添加一个 PHP 函数。这是它的样子:
<?php
function example_function() {
// code
}
$form = '
<form action" <!-- etc. --> >
<input <!-- etc. --> >
<input value="<!-- example_function() should go here -->" <!-- etc. --> >
</form>';
?>
关于如何在其中添加该功能的任何想法?我查看了许多其他类似的主题,但似乎都没有解决这个问题(我还查看了文档中的变量函数,但我认为这不能解决问题)。
注意:没有该功能,表格可以正常工作。