Yaf_Route_Rewrite::__construct

(Yaf >=1.0.0)

Yaf_Route_Rewrite::__constructYaf_Route_Rewrite constructor

Beschreibung

public Yaf_Route_Rewrite::__construct(string $match, array $route, array $verify = ?)

Parameter-Liste

match

A pattern, will be used to match a request uri, if it doesn't match, Yaf_Route_Rewrite will return false.

You can use :name style to name segments matched, and use * to match the rest of the URL segments.

route

When the match pattern matches the request uri, Yaf_Route_Rewrite will use this to decide which module/controller/action is the destination.

Either of module/controller/action in this array is optional, if you don't assign a specific value, it will be routed to default.

verify

Rückgabewerte

Beispiele

Beispiel #1 Yaf_Route_Rewrite()example

<?php
   
/**
    * Add a rewrite route to Yaf_Router route stack
    */
    
Yaf_Dispatcher::getInstance()->getRouter()->addRoute("name",
        new 
Yaf_Route_rewrite(
           
"/product/:name/:id/*"//match request uri leading "/product"
           
array(
               
'controller' => "product",  //route to product controller,
           
),
        )
    );
?>

Das oben gezeigte Beispiel erzeugt eine ähnliche Ausgabe wie:

/* for http://yourdomain.com/product/foo/22/foo/bar
 * route will result in following values:
 */
array(
  "controller" => "product",
  "module"     => "index", //(default)
  "action"     => "index", //(default)
)

/**
 * and request parameters:
 */
array(
  "name" => "foo",
  "id"   => 22,
  "foo"  => bar
)

Beispiel #2 Yaf_Route_Rewrite()example

<?php
   
/**
    * Add a rewrite route to Yaf_Router route stack by calling addconfig
    */
    
$config = array(
        
"name" => array(
           
"type"  => "rewrite",        //Yaf_Route_Rewrite route
           
"match" => "/user-list/:id"//match only /user/list/?/
           
"route" => array(
               
'controller' => "user",  //route to user controller,
               
'action'     => "list",  //route to list action
           
),
        ),
    );
    
Yaf_Dispatcher::getInstance()->getRouter()->addConfig(
        new 
Yaf_Config_Simple($config));
?>

Das oben gezeigte Beispiel erzeugt eine ähnliche Ausgabe wie:

/* for http://yourdomain.com/user-list/22
 * route will result in following values:
 */
array(
  "controller" => "user",
  "action"     => "list",
  "module"     => "index", //(default)
)

/**
 * and request parameters:
 */
array(
  "id"   => 22,
)

Beispiel #3 Yaf_Route_Rewrite(as of 2.3.0)()example

<?php
   
/**
    * Add a rewrite route use match result as m/c/a name
    */
    
$config = array(
        
"name" => array(
           
"type"  => "rewrite",        
           
"match" => "/user-list/:a/:id"//match only /user-list/*
           
"route" => array(
               
'controller' => "user",   //route to user controller,
               
'action'     => ":a",     //route to :a action
           
),
        ),
    );
    
Yaf_Dispatcher::getInstance()->getRouter()->addConfig(
        new 
Yaf_Config_Simple($config));
?>

Das oben gezeigte Beispiel erzeugt eine ähnliche Ausgabe wie:

/* for http://yourdomain.com/user-list/list/22
 * route will result in following values:
 */
array(
  "controller" => "user",
  "action"     => "list",
  "module"     => "index", //(default)
)

/**
 * and request parameters:
 */
array(
  "id"   => 22,
)

Siehe auch

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

SQL Höchsten Wert bestimmen mit Suchbefehl

Hallo Italian Brainrot Clicker (https://italianbrainrot-clicker.org) Zusammen Ich möchte gerne meine DB durchsuchen. Die Tablle heißt temp und ...

Geschrieben von soysession am 02.06.2025 05:15:04
Forum: SQL / Datenbanken
Grid und Pos geht nicht ...

Silder1 should be in row 5 and columns 2 to 6. Silder2 should be in row 6 and columns 2 to 5. https://handicap-fan.com/test.html snow rider (h ...

Geschrieben von glancerangale am 31.05.2025 11:42:11
Forum: PHP Developer Forum
Umfangreiche Auswertung einer Solaranlage

Speed Stars (https://wordle2.io/speed-stars-unblocked) is more than just a sprinting game—it’s a celebration of movement, timing, and physics ...

Geschrieben von hennysmath12 am 31.05.2025 10:33:40
Forum: Projekthilfe
Gelöschte Datensätze in Datenbank ausgeben

Da hilft die Doku: https://www.php.net/manual/de/mysqli.affected-rows.php subway surfers (https://subwaysurf.io/play)​ I got it, thanks for sh ...

Geschrieben von hennysmath12 am 31.05.2025 10:29:25
Forum: SQL / Datenbanken