定制 artem14133q/sxml 二次开发

按需修改功能、优化性能、对接业务系统,提供一站式技术支持

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

artem14133q/sxml

最新稳定版本:1.0.1

Composer 安装命令:

composer require artem14133q/sxml

包简介

A simple php library for manage xml/html documents.

README 文档

README

A simple php library for manage xml/html documents.

Php version

^8.1

Installation

composer require artem14133q/sxml

Usage

use Sxml\Documents\HtmlDocument;

$html = "
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport"
          content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
    <meta http-equiv="X-UA-Compatible" content="ie=edge">
    <title>Document</title>
</head>
<body>
    <div>Hello World!</div>
</body>
</html>
";

$doc = HtmlDocument($html);

$body = $doc->getHtmlNode()->findByName("body")[0];
$div = $body->findByName("div")[0];

$div->setValue("Hello SXML!");

$doc->writer->asText();

Input:

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport"
          content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
    <meta http-equiv="X-UA-Compatible" content="ie=edge">
    <title>Document</title>
</head>
<body>
    <div>Hello SXML!</div>
</body>
</html>

License

MIT

统计信息

  • 总下载量: 3
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 0
  • 点击次数: 0
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 0
  • Watchers: 1
  • Forks: 0
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2024-01-16