0

我坚持如何将 test.php 页面结果(在 php 运行后)写入字符串:

测试函数.php:

<?php

function htmlify($html, $format){
    if ($format == "print"){


        $html = str_replace("<", "&lt;", $html);
        $html = str_replace(">", "&gt;", $html);
        $html = str_replace("&nbsp;", "&amp;nbsp;", $html);
        $html = nl2br($html);
        return $html;
  }
};

$input = <<<HTML
<div style="background color:#959595; width:400px;">
&nbsp;<br>
input <b>text</b>
<br>&nbsp;
</div>
HTML;

function content($input, $mode){
  if ($mode =="display"){
    return $input;
  }
  else if ($mode =="source"){
    return htmlify($input, "print");
  }; 

};

function pagePrint($page){

  $a = array(
    'file_get_contents' => array($page),
    'htmlify' => array($page, "print")
  );  
  foreach($a as $func=>$args){
      $x = call_user_func_array($func, $args);
      $page .= $x;
  }    
  return $page;
};


$file = "test.php";
?>

测试.php:

<?php include "testFunctions.php"; ?>


<br><hr>here is the rendered html:<hr>

<?php $a = content($input, "display"); echo $a; ?>

<br><hr>here is the source code:<hr>

<?php $a = content($input, "source"); echo $a; ?>


<br><hr>here is the source code of the entire page after the php has been executed:<hr>
<div style="margin-left:40px; background-color:#ebebeb;">
<?php $a = pagePrint($file); echo $a; ?>
</div>

我想将所有 php 文件保留在 testFunctions.php 文件中,这样我就可以将简单的函数调用放入 html 电子邮件的模板中。

谢谢!

4

3 回答 3

0

这可能不是您正在寻找的东西,但您似乎想要构建一个用于处理电子邮件模板的引擎,您可以将 php 函数放入其中?您可以查看http://phpsavant.com/,这是一个简单的模板引擎,可让您将 php 函数直接放入模板文件以及基本变量分配。

我不确定 printPage 应该做什么,但我会像这样重写它只是为了让它更明显,因为函数调用数组有点复杂,我认为这就是真正发生的一切:

function pagePrint($page) {
    $contents = file_get_contents($page);
    return $page . htmlify($contents,'print');
};

您可能会考虑摆脱 htmlify() 函数并使用内置函数 htmlentities() 或 htmlspecialchars()

于 2012-12-06T20:13:40.757 回答
0

您可以使用输出缓冲来捕获包含文件的输出并将其分配给变量:

function pagePrint($page, array $args){
 extract($args, EXTR_SKIP);
 ob_start();
 include $page;
 $html = ob_get_clean();
 return $html;
}

pagePrint("test.php", array("myvar" => "some value");

test.php

<h1><?php echo $myvar; ?></h1>

会输出:

<h1>some value</h1>
于 2012-12-06T20:05:26.520 回答
0

似乎我原来的方法可能不是最好的方法。与其就同一主题提出新问题,不如提供一种替代方法,看看它是否会导致我想要的解决方案。

测试函数.php:

$content1 = "WHOA!";
$content2 = "HEY!";
$file = "test.html";

$o = file_get_contents('test.html');

$o = ".$o.";

echo $o;

?>

文本.php:

<hr>this should say "WHOA!":<hr>

$content1

<br><hr>this should say "HEY!":<hr>

$content2

我基本上是想让 $o 返回 test.php 文件的字符串,但我希望解析 php 变量。好像它是这样读的:

$o = "
    <html>$content1</html>
";

或者

$o = <<<HTML
<html>$content1</html>
HTML;

谢谢!

于 2012-12-06T23:01:13.210 回答