Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/garyjones/php-type-converter
Converts one resource to another (XML, JSON, Object, Array, Serialization).
https://github.com/garyjones/php-type-converter
Last synced: 15 days ago
JSON representation
Converts one resource to another (XML, JSON, Object, Array, Serialization).
- Host: GitHub
- URL: https://github.com/garyjones/php-type-converter
- Owner: GaryJones
- License: mit
- Created: 2013-01-26T15:08:20.000Z (almost 12 years ago)
- Default Branch: develop
- Last Pushed: 2015-07-18T15:19:57.000Z (over 9 years ago)
- Last Synced: 2024-10-04T20:35:51.901Z (about 1 month ago)
- Language: PHP
- Size: 160 KB
- Stars: 5
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: license.md
Awesome Lists containing this project
README
# PHP Type Converter
A class that handles the detection and conversion of certain resource formats / content types into other formats.
The current formats are supported: XML, JSON, Array, Object, Serialized
## Requirements
* PHP 5.3.0+
* [SimpleXML](http://php.net/manual/book.simplexml.php)## Documentation
The class is pretty straight forward. If you want to convert something to another format, use the "to" methods.
~~~php
$object = TypeConverter::toObject($resource);
$array = TypeConverter::toArray($resource);
$json = TypeConverter::toJson($resource);
$xml = TypeConverter::toXml($resource);
$ser = TypeConverter::toSerialize($resource);
~~~If you want to detect what resource type it is, use the "is" methods.
If you use the "to" methods above, it does automatic "is" detection.~~~php
TypeConverter::isObject($resource);
TypeConverter::isArray($resource);
TypeConverter::isJson($resource);
TypeConverter::isXml($resource);
TypeConverter::isSerialized($resource);
~~~If you want a string representation of what a resource is, use the default is() method.
~~~php
$resource = array();
TypeConverter::is($resource); // array
~~~You can convert an XML document into an array (must have SimpleXML).
~~~php
$array = TypeConverter::xmlToArray($xml, TypeConverter::XML_MERGE);
~~~When using xmlToArray(), you can define the format in which the node attributes and values are presented. The following constants are available.
* `XML_NONE` - Disregard XML attributes and only return the value.
* `XML_MERGE` - Merge attributes and the value into a single dimension; the values key will be "value".
* `XML_GROUP` - Group the attributes into a key of "attributes" and the value into a key of "value".
* `XML_OVERWRITE` - Attributes will only be returned.## Status
[![Build Status](https://travis-ci.org/GaryJones/php-type-converter.png)](https://travis-ci.org/GaryJones/php-type-converter)## Changelog
Originally forked from Type Converter v2.0.0 https://github.com/milesj/php-type_converter by [Miles Johnson](https://twitter.com/gearvOsh).This fork adds support for conversion of nested combinations of arrays / objects and some unit tests.