An open API service indexing awesome lists of open source software.

https://github.com/tumobi/php-helper

Use Node.js to implement PHP's common built-in functions.
https://github.com/tumobi/php-helper

nodejs php php-functions

Last synced: 5 months ago
JSON representation

Use Node.js to implement PHP's common built-in functions.

Awesome Lists containing this project

README

          

# php-helper

用 Node.js 实现的常用 PHP 函数

## 安装
```
npm install --save php-helper
```

## 使用
```
const php = require('php-helper')
const md5 = php.md5('123456')
const jsonObj = php.json_decode('{"name":"your name","age":11}')
```