ZF-2378: A "new " miss in the example code
Description
In the documentation of Zend Mail, on the "reference guide", point 21.14.5.
The code is : {quote}foreach (RecursiveIteratorIterator($mail->getMessage(1)) as $part) { try { if (strtok($part->contentType, ';') == 'text/plain') { $foundPart = $part; {quote}
And it must be : {quote}foreach (new RecursiveIteratorIterator($mail->getMessage(1)) as $part) { try { if (strtok($part->contentType, ';') == 'text/plain') { $foundPart = $part; {quote}
Thanks you Pierre Bonneau QSMS
Comments
Posted by Wil Sinclair (wil) on 2008-01-15T16:39:31.000+0000
Matthew, you have some other documentation fixes for 1.5, can you take a look at this one, too?