资 源 简 介
Welcome to the query-path incubation class project on google code!
general requirements
PHP Version: >5.0 ( recommended )
licensing
This code is open source and orginally create by Matthias Kaschubowski ( me ). If possible credit my work at your projects or webpages.
description
queryIncubator splits a string along its defined seperator and delivers an array of ( possibly user-defined ) objects or strings. He also grants event-based string-manipulation of each string-therm. Any Event must be realised along closures.
basic usage
```
require_once("includes/libs/query.incubator.php");
// current url e.g.: http://example.com/?q=test/this
$q = new queryIncubator($_GET["q"], "/");
$queryLevels = $q->incubate()->asArray();
var_dump($queryLevels);
```
advance usage
```
require_once("includes/libs/query.incubator.php");
// current url e.g.: http://examp