如何使用 php 将 div 的内容保存到您的站点
How to save the content of a div to your site using php
我使用 codemirror 开发了一个 HTML 编辑器。我现在正在寻找一种方法让用户将 div 中的代码保存到站点的服务器,以便他们可以查看他们的站点。我在网上搜索了一下,在网上找到了这个:
<?php
// Start the buffering //
ob_start();
?>
Your page content bla bla bla bla ...
<?php
echo '1';
// Get the content that is in the buffer and put it in your file //
file_put_contents('yourpage.html', ob_get_contents());
?>
来源:Save current page as HTML to server
但现在我要说的是:如何将 div 的内容保存到服务器上的 html 文件中?我搜索了一下,发现在它说的那一行:"your page content bla bla bla bla" you have to use "",但是它不起作用。我是 php 的新手,非常感谢您的帮助。提前致谢
使用PHP Simple HTML DOM Parser
通过 id 读取页面元素,class & ...
我使用 codemirror 开发了一个 HTML 编辑器。我现在正在寻找一种方法让用户将 div 中的代码保存到站点的服务器,以便他们可以查看他们的站点。我在网上搜索了一下,在网上找到了这个:
<?php
// Start the buffering //
ob_start();
?>
Your page content bla bla bla bla ...
<?php
echo '1';
// Get the content that is in the buffer and put it in your file //
file_put_contents('yourpage.html', ob_get_contents());
?>
来源:Save current page as HTML to server
但现在我要说的是:如何将 div 的内容保存到服务器上的 html 文件中?我搜索了一下,发现在它说的那一行:"your page content bla bla bla bla" you have to use "",但是它不起作用。我是 php 的新手,非常感谢您的帮助。提前致谢
使用PHP Simple HTML DOM Parser 通过 id 读取页面元素,class & ...