!C99Shell v. 2.5 [PHP 8 Update] [24.05.2025]!

Software: Apache. PHP/8.3.27 

uname -a: Linux pdx1-shared-a4-04 6.6.104-grsec-jammy+ #3 SMP Tue Sep 16 00:28:11 UTC 2025 x86_64 

uid=6659440(dh_z2jmpm) gid=2086089(pg10499364) groups=2086089(pg10499364)  

Safe-mode: OFF (not secure)

/usr/share/doc/libparse-recdescent-perl/examples/   drwxr-xr-x
Free 711.39 GB of 879.6 GB (80.88%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


Viewing file:     demo_leftassoc.pl (1.06 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |

# THE COMMONEST REASON FOR WANTING LEFT RECURSION

use strict;
use Parse::RecDescent; $::RD_HINT = 1;


my $parse = Parse::RecDescent->new(<<'EndGrammar');

    main: expr /\Z/ { $item[1] }
        | <error>

    expr: left_assoc[qw{term add_op term}]
        | term

    add_op: '+'    { sub { $_[0] + $_[1] } }
          | '-'    { sub { $_[0] - $_[1] } }

    term: left_assoc[qw{factor mult_op factor}]
        | factor

    mult_op: '*'    { sub { $_[0] * $_[1] } }
           | '/'    { sub { $_[0] / $_[1] } }

    factor: number
          | '(' expr ')' { $item[2] }

    number: /[-+]?\d+(\.\d+)?/


# THE BLACK MAGIC THAT MAKES IT WORK...

    left_assoc: left_assoc_left[@arg[0,1]](s) <matchrule:$arg[2]>
            { my @terms = $item[1]
                ? ((map { @$_ } @{$item[1]}), $item[2])
                : $item[1];
              splice @terms, 0, 3, $terms[1]->(@terms[0,2])
                while @terms>1;
              $terms[0];
            }

    left_assoc_left: <matchrule:$arg[0]> <matchrule:$arg[1]>
            { [ @item[1..2] ] }


EndGrammar

while (<DATA>) {
  print $parse->main($_), "\n";
}

__DATA__
+1-1+1-1+1-1+1-1+1
7*7-6*8
121/(121/11)/121*11
1/(10-1/(1/(10-1)))

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ Read-Only ]

:: Make Dir ::
 
[ Read-Only ]
:: Make File ::
 
[ Read-Only ]

:: Go Dir ::
 
:: Go File ::
 

--[ c99shell v. 2.5 [PHP 8 Update] [24.05.2025] | Generation time: 0.0397 ]--