2017 © Pedro Peláez
 

library matrix-converter

tab or json matrix string converter

image

socoolbear/matrix-converter

tab or json matrix string converter

  • Tuesday, December 12, 2017
  • by socoolbear
  • Repository
  • 0 Watchers
  • 0 Stars
  • 3 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 6 Versions
  • 0 % Grown

The README.md

Matrix Converter

Tab Or Json spereated Matrix String Converter, (*1)

Getting started

composer require socoolbear/matrix-converter

Example

<?php
require __DIR__ . '/vendor/autoload.php';

$jconv = new MatrixConverter\JsonConverter();
$jcor = $jconv->toMatrix("a\tb\r\nc\td");

$tconv = new MatrixConverter\TabConverter();
$tcor = $tconv->toMatrix($jcor);

echo 'json converter : ' . $jcor . PHP_EOL;
echo 'tab converter : ' . $tcor . PHP_EOL;
json converter : 
{
  "count": {
    "trados": 0
  },
  "data": [
    [
      {
        "from": "seo.translate_dictionary_source",
        "keyword": "a",
        "result": "a",
        "type": "head"
      },
      {
        "from": "seo.translate_dictionary_source",
        "keyword": "b\r",
        "result": "b\r",
        "type": "head"
      }
    ],
    [
      {
        "from": "seo.translate_dictionary_source",
        "keyword": "c",
        "result": "c",
        "type": "body"
      },
      {
        "from": "seo.translate_dictionary_source",
        "keyword": "d",
        "result": "d",
        "type": "body"
      }
    ]
  ]
}
tab converter :
a       b
c       d

The Versions

12/12 2017

dev-master

9999999-dev

tab or json matrix string converter

  Sources   Download

MIT

The Development Requires

by Avatar socoolbear

12/12 2017

v0.0.4

0.0.4.0

tab or json matrix string converter

  Sources   Download

MIT

The Development Requires

by Avatar socoolbear

12/12 2017

0.0.4

0.0.4.0

tab or json matrix string converter

  Sources   Download

MIT

The Development Requires

by Avatar socoolbear

12/12 2017

v0.0.3

0.0.3.0

tab or json matrix string converter

  Sources   Download

MIT

The Development Requires

by Avatar socoolbear

12/12 2017

v0.0.1

0.0.1.0

tab or json matrix string converter

  Sources   Download

MIT

The Development Requires

by Avatar socoolbear

12/12 2017

v0.0.2

0.0.2.0

tab or json matrix string converter

  Sources   Download

MIT

The Development Requires

by Avatar socoolbear