php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Doc Bug #37243 german documentation of preg_match_all
Submitted: 2006-04-29 13:48 UTC Modified: 2006-04-29 17:15 UTC
From: falcov at web dot de Assigned:
Status: Closed Package: Documentation problem
PHP Version: Irrelevant OS: N/A
Private report: No CVE-ID: None
 [2006-04-29 13:48 UTC] falcov at web dot de
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!


Patches

Pull Requests

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2006-04-29 17:15 UTC] samesch@php.net
This bug has been fixed in the documentation's XML sources. Since the
online and downloadable versions of the documentation need some time
to get updated, we would like to ask you to be a bit patient.

Thank you for the report, and for helping us make our documentation better.
 
PHP Copyright © 2001-2025 The PHP Group
All rights reserved.
Last updated: Fri Nov 07 16:00:02 2025 UTC