Beefy Boxes and Bandwidth Generously Provided by pair Networks
Think about Loose Coupling
 
PerlMonks  

Re: Has anyone attempted to create a PHP to Perl converter?

by Khen1950fx (Canon)
on Nov 13, 2013 at 13:56 UTC ( [id://1062386]=note: print w/replies, xml ) Need Help??


in reply to Has anyone attempted to create a PHP to Perl converter?

Have you tried PHP::Include?
#!/usr/bin/perl -l use strict; use warnings; use PHP::Include ( DEBUG => 1 ); include_php_vars( '/path/to/deepstructure.php' ); my $file = '/path/to/deepstructure.php'; print $file;
Here's the deepstructure.php:
<?php $structure = array( 'names' => array( 'a' => array( 'alberto', 'antonio'), 'b' => array( 'burro', 'brain')), 'ages' => array( 10, 20, 30, 40), ); $x = 42; ?>

Replies are listed 'Best First'.
Re^2: Has anyone attempted to create a PHP to Perl converter?
by marto (Cardinal) on Nov 13, 2013 at 16:03 UTC
    my $file = '/path/to/deepstructure.php'; print $file;

    Why have you done this? It literally does nothing to help. Did you actually try this with some real PHP code and not just a simple set of variable declarations? I don't think you actually know what the code you've posted does, your simply falling back to the DEBUG option to dump the perl the module generates to STDERR.

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://1062386]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others examining the Monastery: (7)
As of 2024-04-18 15:54 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found