用php创建动态html页面

时间:2015-12-06 19:58:17

标签: php html5 dynamic

我需要用PHP创建新的html页面。我需要的是获得一个带有画布的新html页面。

此时我使用html2canvas从另一个页面捕获画布。

我需要这个画布成为新html页面的背景,或者只是100%宽度100%高度图片。

我对PHP的看法是这样的,但是我需要捕捉图片或者飞行中的画布,然后制作这样的东西:

<?php

    $file = file_get_contents("example.html");
    file_put_contents("example.html", $file);
?>

我该怎么做?感谢。

1 个答案:

答案 0 :(得分:1)

根据我的理解,您正在尝试截取页面的屏幕截图,然后将其用作PHP中另一个新创建页面的背景。

看一下屏幕截图:Website screenshots using PHP

截取屏幕截图后,只需使用

等内容即可
$newpage = 'example.html';
$contents = file_get_contents($newpage);
$contents = "<html><style>background-image: '<?php echo //Your Saved Screenshot ?>'</style></html>";
file_put_contents($newpage, $contents);