承接 setkyar/mmfont 相关项目开发

从需求分析到上线部署,全程专人跟进,保证项目质量与交付效率

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

setkyar/mmfont

Composer 安装命令:

composer require setkyar/mmfont

包简介

A simple Composer Package which converts zawgyi1 <=> unicode strings

README 文档

README

Simple package which converts zawgyi1 <=> unicode strings. I try to be on packagist, the codes come from saturngod's Rabbit

Installation

Create composer.json and add the following

{
  "require" : {
    "setkyar/mmfont" : "dev-master"
  }
}

And run $ composer install via your terminal

Usage

Create new php file and add the following

<?php

 // Display Errors On
ini_set('display_errors', 'On');

$autoload = __DIR__.'/vendor/autoload.php';

if ( ! file_exists($autoload))
{
	exit("Need to run \"composer install\"!");
}

require $autoload;


use SetKyar\Mmfont\Mmfont;

$mmfont = new Mmfont;

echo "Unicode to  Zaw Gyi " . $mmfont->uni2zg1('မြန်မာစာ');
echo "<br>";
echo "Zaw Gyi to Unicode " . $mmfont->zg12uni('ျမန္မာစာ');

Todo

  • Write Test

Credit

This is originally from @saturngod's Rabbit. I just try to be on packagist

Contributing

  1. Fork it ( https://github.com/setkyar/phpmmfont )
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create a new Pull Request

Your star make me 😄 too, don't miss to gave it!

License

WTFPL

统计信息

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

GitHub 信息

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

其他信息

  • 授权协议: WTFPL
  • 更新时间: 2015-03-03