Download .zip |
Info | Documentation | View files (14) | Download .zip | Reputation | Support forum (2) | Blog | Links |
Last Updated | Ratings | Unique User Downloads | Download Rankings | |||||
2018-04-08 (5 months ago) | Not enough user ratings | Total: 226 | All time: 7,879 This week: 306 |
Version | License | PHP version | Categories | |||
php-datatype 1.1.8 | MIT/X Consortium ... | 5.6 | Data types |
Description | Author | |
This class can be used to convert objects to arrays. Innovation Award
|
PHP simple library for managing of data types.
This library is supported by PHP versions 5.6 or higher and is compatible with HHVM versions 3.0 or higher.
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:
$ wget https://raw.githubusercontent.com/Josantonius/PHP-DataType/master/src/DataType.php
Available methods in this library:
DataType::objectToArray($object);
| Attribute | Description | Type | Required | Default | --- | --- | --- | --- | --- | | $object | Variable of the object. | object | Yes | |
# Return (array) ? object converted to array
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;
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"
}
*/
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
If you would like to help, please take a look at the list of issues or the To Do checklist.
Pull requests
composer install
to install the dependencies.
This will also install the dev dependencies.composer fix
to excute code standard fixers.The file structure from this repository was created with PHP-Skeleton.
This project is licensed under MIT license. See the LICENSE file for more info.
2016 - 2018 Josantonius, josantonius.com
If you find it useful, let me know :wink:
Files |
File | Role | Description | ||
---|---|---|---|---|
src (1 file) | ||||
tests (1 file) | ||||
.editorconfig | Data | Auxiliary data | ||
.php_cs.dist | Example | Example script | ||
.travis.yml | Data | Auxiliary data | ||
CHANGELOG.md | Data | Auxiliary data | ||
composer.json | Data | Auxiliary data | ||
CONDUCT.md | Data | Auxiliary data | ||
LICENSE | Lic. | License text | ||
phpcs.xml | Data | Auxiliary data | ||
phpmd.xml | Data | Auxiliary data | ||
phpunit.xml | Data | Auxiliary data | ||
README-ES.md | Doc. | Documentation | ||
README.md | Doc. | Documentation |
Version Control | Unique User Downloads | Download Rankings | |||||||||||||||
100% |
|
|
User Comments (1) | |||||
|
Applications that use this package |
If you know an application of this package, send a message to the author to add a link here.