|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2006-04-29 17:15 UTC] samesch@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Fri Nov 07 16:00:02 2025 UTC |
Description: ------------ Hi guys! IMHO there is a little mistake in the german documentation of preg_match_all, it's also possible that I'm not able to see it, but I think that there is missing a declaration of a variable in your example of PREG_SET_ORDER. You've written the following: <?php preg_match_all("|<[^>]+>(.*)</[^>]+>|U", "<b>Beispiel: </b><div align=\"left\">das ist ein Test</div>", $ausgabe, PREG_SET_ORDER); echo $ausgabe[0][0] . ", " . $out[0][1] . "\n"; echo $ausgabe[1][0] . ", " . $out[1][1] . "\n"; ?> But I can't see where $out is from. $out isn't declared in the above examples too. So, please change it, because especially newbies have no chance to understand this example :) I think you had to change $out in $ausgabe, than it works. Much thanks to you and your crew! MasterDwarf!