Parser examples

Beispiel #1 Simple calculator

<?php 

use Parle\{ParserParserExceptionLexerToken};

$p = new Parser;
$p->token("INTEGER");
$p->left("'+' '-' '*' '/'");

$p->push("start""exp");
$prod_add $p->push("exp""exp '+' exp");
$prod_sub $p->push("exp""exp '-' exp");
$prod_mul $p->push("exp""exp '*' exp");
$prod_div $p->push("exp""exp '/' exp");
$p->push("exp""INTEGER"); /* Production index unused. */

$p->build();

$lex = new Lexer;
$lex->push("[+]"$p->tokenId("'+'"));
$lex->push("[-]"$p->tokenId("'-'"));
$lex->push("[*]"$p->tokenId("'*'"));
$lex->push("[/]"$p->tokenId("'/'"));
$lex->push("\\d+"$p->tokenId("INTEGER"));
$lex->push("\\s+"Token::SKIP);

$lex->build();

$exp = array(
    
"1 + 1",
    
"33 / 10",
    
"100 * 45",
    
"17 - 45",
);

foreach (
$exp as $in) {
    if (!
$p->validate($in$lex)) {
        throw new 
ParserException("Failed to validate input");
    }

    
$p->consume($in$lex);

    while (
Parser::ACTION_ERROR != $p->action && Parser::ACTION_ACCEPT != $p->action) {
        switch (
$p->action) {
            case 
Parser::ACTION_ERROR:
                throw new 
ParserException("Parser error");
                break;
            case 
Parser::ACTION_SHIFT:
            case 
Parser::ACTION_GOTO:
            case 
Parser::ACTION_ACCEPT:
                break;
            case 
Parser::ACTION_REDUCE:
                switch (
$p->reduceId) {
                    case 
$prod_add:
                        
$l $p->sigil(0);
                        
$r $p->sigil(2);
                        echo 
"$l + $r = " . ($l $r) . "\n";
                        break;
                    case 
$prod_sub:
                        
$l $p->sigil(0);
                        
$r $p->sigil(2);
                        echo 
"$l - $r = " . ($l $r) . "\n";
                        break;
                    case 
$prod_mul:
                        
$l $p->sigil(0);
                        
$r $p->sigil(2);
                        echo 
"$l * $r = " . ($l $r) . "\n";
                        break;
                    case 
$prod_div:
                        
$l $p->sigil(0);
                        
$r $p->sigil(2);
                    echo 
"$l / $r = " . ($l $r) . "\n";
                        break;
            }
            break;
        }
        
$p->advance();
    }
}

Beispiel #2 Parse words out from a sentence

<?php

use Parle\{LexerTokenParserParserException};

$p = new Parser;
$p->token("WORD");
$p->push("START""SENTENCE");
$p->push("SENTENCE""WORDS");
$prod_word_0 $p->push("WORDS""WORDS WORD");
$prod_word_1 $p->push("WORDS""WORD");
$p->build();

$lex = new Lexer;
$lex->push("[^\s]{-}[\.,\:\;\?]+"$p->tokenId("WORD"));
$lex->push("[\s\.,\:\;\?]+"Token::SKIP);
$lex->build();

$in "Dis-moi où est ton papa?";
$p->consume($in$lex);
do {
    switch (
$p->action) {
    case 
Parser::ACTION_ERROR:
        throw new 
ParserException("Error");
        break;
    case 
Parser::ACTION_SHIFT:
    case 
Parser::ACTION_GOTO:
        
/* var_dump($p->trace());*/
        
break;
    case 
Parser::ACTION_REDUCE:
        
$rid $p->reduceId();
        if (
$rid == $prod_word_1) {
            
var_dump($p->sigil(0));
        } if (
$rid == $prod_word_0) {
            
var_dump($p->sigil(1));
        }
        break;
    }
    
$p->advance();
} while (
Parser::ACTION_ACCEPT != $p->action);

Hier Kannst Du einen Kommentar verfassen


Bitte gib mindestens 10 Zeichen ein.
Wird geladen... Bitte warte.
* Pflichtangabe
Es sind noch keine Kommentare vorhanden.

Was genau bedeutet "Vibe Coding"? Ein tiefgehender Blick für Entwickler

In der Welt der Softwareentwicklung gibt es unzählige Wege, wie man an ein Projekt herangeht. Manche schwören auf strikte Planung, andere auf bewährte Algorithmen und wieder andere lassen sich von etwas ganz anderem leiten: ihrem Gefühl. ...

admin

Autor : admin
Kategorie: Software & Web-Development

PHP cURL-Tutorial: Verwendung von cURL zum Durchführen von HTTP-Anfragen

cURL ist eine leistungsstarke PHP-Erweiterung, die es Ihnen ermöglicht, mit verschiedenen Servern über verschiedene Protokolle wie HTTP, HTTPS, FTP und mehr zu kommunizieren. ...

TheMax

Autor : TheMax
Kategorie: PHP-Tutorials

Midjourney Tutorial - Anleitung für Anfänger

Über Midjourney, dem Tool zur Erstellung digitaler Bilder mithilfe von künstlicher Intelligenz, gibt es ein informatives Video mit dem Titel "Midjourney Tutorial auf Deutsch - Anleitung für Anfänger" ...

Mike94

Autor : Mike94
Kategorie: KI Tutorials

Tutorial veröffentlichen

Tutorial veröffentlichen

Teile Dein Wissen mit anderen Entwicklern weltweit

Du bist Profi in deinem Bereich und möchtest dein Wissen teilen, dann melde dich jetzt an und teile es mit unserer PHP-Community

mehr erfahren

Tutorial veröffentlichen

Kalenderwoche auf Sonntag anfangen lassen

CTBabe.in features the best escort service near me search. Browse verified call girls India, independent escorts near me, and premium escorts with ...

Geschrieben von ctbabe am 12.03.2026 05:36:28
Forum: PHP Developer Forum
The Ultimate Guide to Writing a Synthesis Essay

Writing a synthesis essay requires combining information from multiple sources to create a clear and well-supported argument. If you are wondering ...

Geschrieben von xokeg33032 am 10.03.2026 12:07:48
Forum: PHP Developer Forum
F1 Managerspiel sucht PHP Programmierer

Wow, endlich viele Details zum Projekt! Manchmal könnte man ein paar praktische Beispiele hinzufügen, damit es für Anfänger verständlicher is ...

Geschrieben von suchedich am 09.03.2026 14:13:54
Forum: Projekthilfe
SEO-URLs und MySQL

SEO-URLs verbessern sowohl die Sichtbarkeit bei der Suche als auch das Vertrauen der Benutzer, während MySQL eine strukturierte Speicherung und e ...

Geschrieben von chavesarlene am 04.03.2026 20:48:58
Forum: SQL / Datenbanken