Giter Club home page Giter Club logo

php2python's People

Contributors

dependabot[bot] avatar marvasde avatar nicolasrod avatar unusedaccount avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

php2python's Issues

Could you provide a better readme file?

I am getting a result [*] Done! but I have no idea where the converted .py file is saved? I dropped the PHP file I want to convert into the same directory.

Could you provide a better readme file? Currently the readme file instructions are not relatable as they refer to a non-existent Wordpress folder.

ByRef variables

Take into account variables by reference. The following code:

<?php declare(strict_types=1);

function test(int &$num) {
    $num = 23;
}

$v = 44;
test($v);
echo $v;

Should be translated into:

def test(num_):
   test.num_ = num_
   test.num_ = 23

v = 44
test(v)
v = test.num_
print(v)

Assignments in Expressions

Convert any assignment to an assignment and a statement. For example:

$a = 1;
if ($a++ > 1) {
   echo 'a is greater than 1';
}

Turns into:

a = 1
if a > 1:
  a += 1

Some expressions are already translated. It is needed to evaluate every potential place where Python is expecting an expression and if an assignment is found, deal with it.

PHP OOP to Python OOP

Hi,
Can you please tell me if this tool is appropriate for converting OO PHP to the equivalent OO Python?

Part of this is for learning the similarities between the languages and also as a head start for evaluating a cut-over to Python.

The PHP files (scripts) run in both Windows and Linux and have nothing to do with web dev. There is a lot of XML translation going in the code.

Any guidance would be greatly appreciated!
Thanks
Rob

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.