├── LICENSE ├── PHPDeserializer.py ├── README.md ├── __pycache__ ├── config.cpython-311.pyc ├── config.cpython-39.pyc ├── findthechain.cpython-311.pyc ├── php2json.cpython-311.pyc ├── php2json.cpython-39.pyc ├── preparation.cpython-311.pyc └── preparation.cpython-39.pyc ├── backup.py ├── config.py ├── findthechain.py ├── input.php ├── main.py ├── note.md ├── output.json ├── output1.json ├── output2.json ├── php2json.py ├── preparation.py ├── requirements.txt ├── test.json ├── test.php └── test.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jlan45/AnswerPHP/HEAD/LICENSE -------------------------------------------------------------------------------- /PHPDeserializer.py: -------------------------------------------------------------------------------- 1 | class PHPDeserializer: 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jlan45/AnswerPHP/HEAD/README.md -------------------------------------------------------------------------------- /__pycache__/config.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jlan45/AnswerPHP/HEAD/__pycache__/config.cpython-311.pyc -------------------------------------------------------------------------------- /__pycache__/config.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jlan45/AnswerPHP/HEAD/__pycache__/config.cpython-39.pyc -------------------------------------------------------------------------------- /__pycache__/findthechain.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jlan45/AnswerPHP/HEAD/__pycache__/findthechain.cpython-311.pyc -------------------------------------------------------------------------------- /__pycache__/php2json.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jlan45/AnswerPHP/HEAD/__pycache__/php2json.cpython-311.pyc -------------------------------------------------------------------------------- /__pycache__/php2json.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jlan45/AnswerPHP/HEAD/__pycache__/php2json.cpython-39.pyc -------------------------------------------------------------------------------- /__pycache__/preparation.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jlan45/AnswerPHP/HEAD/__pycache__/preparation.cpython-311.pyc -------------------------------------------------------------------------------- /__pycache__/preparation.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jlan45/AnswerPHP/HEAD/__pycache__/preparation.cpython-39.pyc -------------------------------------------------------------------------------- /backup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jlan45/AnswerPHP/HEAD/backup.py -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jlan45/AnswerPHP/HEAD/config.py -------------------------------------------------------------------------------- /findthechain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jlan45/AnswerPHP/HEAD/findthechain.py -------------------------------------------------------------------------------- /input.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jlan45/AnswerPHP/HEAD/input.php -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jlan45/AnswerPHP/HEAD/main.py -------------------------------------------------------------------------------- /note.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jlan45/AnswerPHP/HEAD/note.md -------------------------------------------------------------------------------- /output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jlan45/AnswerPHP/HEAD/output.json -------------------------------------------------------------------------------- /output1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jlan45/AnswerPHP/HEAD/output1.json -------------------------------------------------------------------------------- /output2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jlan45/AnswerPHP/HEAD/output2.json -------------------------------------------------------------------------------- /php2json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jlan45/AnswerPHP/HEAD/php2json.py -------------------------------------------------------------------------------- /preparation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jlan45/AnswerPHP/HEAD/preparation.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | phply~=1.2.6 -------------------------------------------------------------------------------- /test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jlan45/AnswerPHP/HEAD/test.json -------------------------------------------------------------------------------- /test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jlan45/AnswerPHP/HEAD/test.php -------------------------------------------------------------------------------- /test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jlan45/AnswerPHP/HEAD/test.py --------------------------------------------------------------------------------