PHP Classes
elePHPant
Icontem

PHP Data Type: Convert objects to arrays

Recommend this page to a friend!
  Info   View files Documentation   View files View files (14)   DownloadInstall with Composer Download .zip   Reputation   Support forum (2)   Blog    
Last Updated Ratings Unique User Downloads Download Rankings
2018-04-08 (5 months ago) RSS 2.0 feedNot enough user ratingsTotal: 226 All time: 7,879 This week: 306Up
Version License PHP version Categories
php-datatype 1.1.8MIT/X Consortium ...5.6Data types
Description Author

This class can be used to convert objects to arrays.

It takes an object and convert it to an array.

Before converting the object itself, it traverses its variables recursively and convert the object variables to arrays.

Innovation Award
PHP Programming Innovation award nominee
October 2017
Number 4
This class can be used to convert objects to arrays.

It takes an object and convert it to an array.

Before converting the object itself, it traverses its variables recursively and convert the object variables to arrays.

Manuel Lemos
  Performance   Level  
Name: Josantonius <contact>
Classes: 30 packages by
Country: Spain Spain
Innovation award
Innovation award
Nominee: 11x

Details

PHP DataType library

Latest Stable Version Latest Unstable Version License Codacy Badge Total Downloads Travis PSR2 PSR4 CodeCov

Versión en español

PHP simple library for managing of data types.

Requirements

This library is supported by PHP versions 5.6 or higher and is compatible with HHVM versions 3.0 or higher.

Installation

The preferred way to install this extension is through Composer.

To install PHP DataType library, simply:

$ composer require Josantonius/DataType

The previous command will only install the necessary files, if you prefer to download the entire source code you can use:

$ composer require Josantonius/DataType --prefer-source

You can also clone the complete repository with Git:

$ git clone https://github.com/Josantonius/PHP-DataType.git

Or install it manually:

Download DataType.php:

$ wget https://raw.githubusercontent.com/Josantonius/PHP-DataType/master/src/DataType.php

Available Methods

Available methods in this library:

- Convert object to array:

DataType::objectToArray($object);

| Attribute | Description | Type | Required | Default | --- | --- | --- | --- | --- | | $object | Variable of the object. | object | Yes | |

# Return (array) ? object converted to array

Quick Start

To use this library with Composer:

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

use Josantonius\DataType\DataType;

Or If you installed it manually, use it:

require_once __DIR__ . '/DataType.php';

use Josantonius\DataType\DataType;

Usage

Example of use for this library:

$object = new \stdClass();

$object->name  = 'Josantonius';
$object->email = 'info@josantonius.com';
$object->url   = 'https://github.com/josantonius/PHP-DataType';

echo '<pre>'; var_dump(DataType::objectToArray($object)); echo '</pre>';

/*
array(3) {
  ["name"]=>
  string(11) "Josantonius"
  ["email"]=>
  string(20) "info@josantonius.com"
  ["url"]=>
  string(36) "https://github.com/josantonius/PHP-DataType"
}
*/

Tests

To run tests you just need composer and to execute the following:

$ git clone https://github.com/Josantonius/PHP-DataType.git

$ cd PHP-DataType

$ composer install

Run unit tests with PHPUnit:

$ composer phpunit

Run PSR2 code standard tests with PHPCS:

$ composer phpcs

Run PHP Mess Detector tests to detect inconsistencies in code style:

$ composer phpmd

Run all previous tests:

$ composer tests

? TODO

  • [ ] Add new feature.
  • [ ] Improve tests.
  • [ ] Improve documentation.
  • [ ] Refactor code for disabled code style rules. See phpmd.xml and .php_cs.dist.

Contribute

If you would like to help, please take a look at the list of issues or the To Do checklist.

Pull requests

  • Fork and clone.
  • Run the command composer install to install the dependencies. This will also install the dev dependencies.
  • Run the command composer fix to excute code standard fixers.
  • Run the tests.
  • Create a branch, commit, push and send me a pull request.

Repository

The file structure from this repository was created with PHP-Skeleton.

License

This project is licensed under MIT license. See the LICENSE file for more info.

Copyright

2016 - 2018 Josantonius, josantonius.com

If you find it useful, let me know :wink:

You can contact me on Twitter or through my email.

  Files folder image Files  
File Role Description
Files folder imagesrc (1 file)
Files folder imagetests (1 file)
Accessible without login Plain text file .editorconfig Data Auxiliary data
Accessible without login Plain text file .php_cs.dist Example Example script
Accessible without login Plain text file .travis.yml Data Auxiliary data
Accessible without login Plain text file CHANGELOG.md Data Auxiliary data
Accessible without login Plain text file composer.json Data Auxiliary data
Accessible without login Plain text file CONDUCT.md Data Auxiliary data
Accessible without login Plain text file LICENSE Lic. License text
Accessible without login Plain text file phpcs.xml Data Auxiliary data
Accessible without login Plain text file phpmd.xml Data Auxiliary data
Accessible without login Plain text file phpunit.xml Data Auxiliary data
Accessible without login Plain text file README-ES.md Doc. Documentation
Accessible without login Plain text file README.md Doc. Documentation

  Files folder image Files  /  src  
File Role Description
  Plain text file DataType.php Class Class source

  Files folder image Files  /  tests  
File Role Description
  Plain text file DataTypeTest.php Class Class source

 Version Control Unique User Downloads Download Rankings  
 100%
Total:226
This week:0
All time:7,879
This week:306Up
User Comments (1)