定制 yyxx9988/html-wxml-converter 二次开发

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

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

yyxx9988/html-wxml-converter

Composer 安装命令:

composer require yyxx9988/html-wxml-converter

包简介

A PHP library that can convert html into wxml and back.

README 文档

README

A PHP library that can convert html into wxml and back.

Requirement

  • PHP >= 5.4

Installation

$ composer require "yyxx9988/html-wxml-converter"

Usage

use \yyxx9988\mlconverter\Converter;

$converter = new Converter();

$converter->setHtml('
<div>
    <a>...</a>
    <p><img src="..."></p>
</div>
');

echo $converter->convert();

// result
<view data-htmltag="div">
    <view data-htmltag="a">...</view>
    <view data-htmltag="p"><image src="..."></image></view>
</view>

Customize

  • Default supported tags
[
    'p' => 'view',
    'h1' => 'view',
    'h2' => 'view',
    'h3' => 'view',
    'h4' => 'view',
    'h5' => 'view',
    'h6' => 'view',
    'ul' => 'view',
    'ol' => 'view',
    'li' => 'view',
    'div' => 'view',
    'nav' => 'view',
    'pre' => 'view',
    'code' => 'view',
    'menu' => 'view',
    'aside' => 'view',
    'header' => 'view',
    'footer' => 'view',
    'legend' => 'view',
    'section' => 'view',
    'article' => 'view',
    'caption' => 'view',
    'details' => 'view',
    'summary' => 'view',
    'menuitem' => 'view',
    'blockquote' => 'view',

    'i' => 'text',
    'b' => 'text',
    's' => 'text',
    'u' => 'text',
    'big' => 'text',
    'del' => 'text',
    'sub' => 'text',
    'sup' => 'text',
    'ins' => 'text',
    'font' => 'text',
    'mark' => 'text',
    'time' => 'text',
    'span' => 'text',
    'center' => 'text',
    'strong' => 'text',
    'strike' => 'text',
];
  • Customize special tags
$converter = new Converter();

// add a tag
$converter->addHtmlTags('xxx', 'view');

// change a tag
$converter->setHtmlTags('li', 'text');

// remove a tag
$converter->removeHtmlTags('article');

echo $converter->convert();

License

MIT

统计信息

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

GitHub 信息

  • Stars: 7
  • Watchers: 1
  • Forks: 2
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2017-03-12

承接程序开发

PHP开发

VUE

Vue开发

前端开发

小程序开发

公众号开发

系统定制

数据库设计

云部署

网站建设

安全加固