Recommend this page to a friend! |
Download .zip |
Info | Documentation | View files (6) | Download .zip | Reputation | Support forum | Blog | Links |
Last Updated | Ratings | Unique User Downloads | Download Rankings | |||||
2020-10-23 (23 days ago) | Not yet rated by the users | Total: 17 This week: 16 | All time: 10,096 This week: 23 |
Version | License | PHP version | Categories | |||
mezon-fields-set 1.0 | MIT/X Consortium ... | 5 | PHP 5, Data types |
Description | Author | |
This package can manipulate a set of field types and constraints. |
|
You may need to store a list of typed fields for some purposes. So this class doing exactly what you need.
Just print
composer require mezon/fields-set
The creation is quite simple
$fieldsSet = new \Mezon\FieldsSet([
'id' => [
'type' => 'int',
'title' => 'id of the record'
],
'title' => [
'type' => 'string',
'title' => 'some title'
],
'description' => [
'type' => 'string',
'title' => 'quite obvious yeah?)'
]
]);
Method returns all fields in the set
public function getFields(): array
Method validates if the field exists in our set
public function hasField(string $fieldName): bool
Method returns a list of fields'es names as array:
public function getFieldsNames(): array
Files |
File | Role | Description | ||
---|---|---|---|---|
Tests (1 file) | ||||
.travis.yml | Data | Auxiliary data | ||
composer.json | Data | Auxiliary data | ||
FieldsSet.php | Class | Class source | ||
phpunit.xml | Data | Auxiliary data | ||
README.md | Doc. | Documentation |
Version Control | Unique User Downloads | Download Rankings | |||||||||||||||
100% |
|
|
Applications that use this package |
If you know an application of this package, send a message to the author to add a link here.