kasseler/compiler
最新稳定版本:1.0.1
Composer 安装命令:
composer require kasseler/compiler
包简介
String compiler library
README 文档
README
The compiler converts the string data in php.
Requirements
- PHP >= 5.4
Installation
$ composer require kasseler/compiler
Usage
$compiler = new Compiler('substr|md5|is_array'); //allow functions $compiler->run("is_array([1, 2, 3, 5])"); //return true $compiler->run("substr('my function compile', 3, 8)"); //return string 'function' $compiler->run("[1, 2, 3, 4, 5]"); //return array [1, 2, 3, 4, 5] $compiler->run('{"assoc":[1, 2, 3, 4, 5]}'); //return assoc array ['assoc' => [1, 2, 3, 4, 5]] $compiler->run("md5('654')"); //return hash md5 'ab233b682ec355648e7891e66c54191b' $compiler->run("true"); //return boolean true
统计信息
- 总下载量: 38
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 0
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2015-02-28