http://qs321.pair.com?node_id=1062386


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; ?>