HTML5解析和序列化的PHP库
有很多情况会涉及到php和java进行数据交换。一般情况是通过json数据格式去交换。但是对于那种比如:商城采用php进行开发,管理系统使用java语言开发,这其中就会涉及到数据交互,而正好php进行过数据序列化存储到数据库,而java还必须去解析,所以就会有这份HTML5解析和序列化的PHP库。帮助大家轻松实现这个效果<?php
require "vendor/autoload.php";
use Masterminds\HTML5;
$html = <<
TESTif (2 > 1) { alert("Math wins."); }
Hello World
This is a test of the HTML5 parser.
& Nobody nowhere.
TEST
©
HERE;
$html5 = new HTML5();
$dom = $html5->loadHTML($html);
print "Converting to HTML 5\n";
$html5->save($dom, fopen("php://stdin", 'w'));
申明:php中文网下载站匠心打造专业的IT资源下载站!一切资源免费,来源网络收集,请自行检测软件的完整性。交流QQ群:916808767