将JavaScript源码转成PHP代码的工具:js2php
jopen
10年前
js2php 是一个基于 Node.js 开发,用来将 JavaScript 源码转成 PHP 代码的转换工具。
安装
- Install nodejs
- Install js2php globally:
npm install -g js2php
用法
Convert a single JavaScript file into PHP:
js2php examples/simple.js > simple.php
Since js2php
outputs the PHP code to stdout, you may run it right after conversion:
js2php examples/class.js | php