saraivadaniel/phpstring
Composer 安装命令:
composer require saraivadaniel/phpstring
包简介
Create objects filling attribute classes with string data (fork of jansenfelipe/phpstring)
README 文档
README
Create objects filling attribute classes with string data (fork of jansenfelipe/phpstring)
How to use
Add library
$ composer require saraivadaniel/phpstring
Add autoload.php in your file:
require_once 'vendor/autoload.php';
Add annotations
<?php class Event { /** * @Text(sequence=1, size=20) */ public $name; /** * @Date(sequence=2, size=8, format="Ymd") */ public $date; /** * @Numeric(sequence=3, size=6, decimals=2, decimal_separator="") */ public $price; /** * @Text(sequence=4, size=100) */ public $description; }
String -> Object
$parser = new PHPString(Event::class); $event = $parser->toObject("BH Bike Show 20160621002000Lorem ipsum dolor sit amet, consectetur adipiscing elit. Fusce consequat augue at hendrerit posuere."); echo $parser->getSize(); //output: 134
String <- Object
$parser = new PHPString(Event::class); $event = new Event(); $event->name = 'Motocross Adventure'; $event->description = 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Fusce consequat augue at hendrerit posuere.'; $event->date = Carbon::createFromFormat('Y-m-d', '2016-06-21'); $event->price = 1200.98; $string = $parser->toString($event);
License
The MIT License (MIT)
统计信息
- 总下载量: 542
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 1
- 点击次数: 0
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2017-05-02