Subversion Repositories Applications.framework

Compare Revisions

Ignore whitespace Rev 148 → Rev 149

/trunk/framework/Url.php
351,10 → 351,11
* @return array
*/
public function getVariablesRequete() {
$pattern = '/[' .
$pattern = '/' .
preg_quote($this->getOption(self::OPTION_SEPARATEUR_ENTREE), '/') .
']/';
'/';
$parties = preg_split($pattern, $this->requete, -1, PREG_SPLIT_NO_EMPTY);
Debug::printr($parties);
$retour = array();
 
foreach ($parties as $partie) {