Skip to main content

a port of the var_dump function of php to python.

Project description

A port of the var_dump function of php to python.

Why on earth would you want this?!?!?

Imagine that you have to deploy something in php. You don’t have a choice. You HAVE to.

php_var_dump lets you do all your data processing and management in python. You can then convert your native python data structures into php code, which can then be saved as include fles for php.

Other python modules that can accomplish the general idea:
phpserialize

implements the PHP serialize/unserialize functions in python allows you to serialize a python data structure to PHP allows you to unserialize a php data structure to Python

simplejson

there are json parsers in php, which can read code you save

The main benefit of using the var_dump method, is that there is no overhead in loading/unloading/parsing/etc.

This method allows you to build a php include file that simply runs fast, and that can use multiple includes within the filesystem as a “database” like system. This way you don’t have to set up any databases, libraries, or whatever - you can just deploy PHP code without coding much in PHP.

Usage

>>> from php_var_dump import php_var_dump
>>> data= "Hello World"
>>> as_php = php_var_dump( 'var', data )
>>> print as_php
$var = 'Hello World';

You’d probable then want to save it…

data_string= “<?phpnn%snn?>” % as_php open(‘data.php’,’w’).write(data_string.encode( “utf-8” ))

Then just include that file in your php programs.

There’s also a php_as_block function, which does the trivial encapsulation as above.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

php_var_dump-0.1.tar.gz (2.7 kB view details)

Uploaded Source

File details

Details for the file php_var_dump-0.1.tar.gz.

File metadata

  • Download URL: php_var_dump-0.1.tar.gz
  • Upload date:
  • Size: 2.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for php_var_dump-0.1.tar.gz
Algorithm Hash digest
SHA256 30eb69c4954edac5a120655f5646d15f287c4a008c034cee8ebd12470e12223f
MD5 c4f7c8010d9e470704c5ccbc31e628f4
BLAKE2b-256 b5b7221febf9ddb1c70bc0f7df223b5644e0a1701dfe58355cf4afda4263efda

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page