[prev in list] [next in list] [prev in thread] [next in thread] 

List:       php-doc-bugs
Subject:    [DOC-BUGS] [PHP-BUG] Doc #68895 [NEW]: Error on parse_str() example
From:       "nazarenolorenzo at gmail dot com"<php-bugs () lists ! php ! net>
Date:       2015-01-23 19:16:57
Message-ID: bug-68895 () bugs ! php ! net
[Download RAW message or body]

From:             nazarenolorenzo at gmail dot com
Operating system: 
PHP version:      Irrelevant
Package:          Documentation problem
Bug Type:         Documentation Problem
Bug description:Error on parse_str() example

Description:
------------
---
From manual page: http://www.php.net/function.parse-str
---
The first part of the current example prints $arr, which is never
declared:

<?php
$str = "first=value&arr[]=foo+bar&arr[]=baz";
parse_str($str);
echo $first;  // value
echo $arr[0]; // foo bar
echo $arr[1]; // baz

Expected result:
----------------
Instead, it should be:
<?php
$str = "first=value&arr[]=foo+bar&arr[]=baz";
$arr = parse_str($str);
echo $first;  // value
echo $arr[0]; // foo bar
echo $arr[1]; // baz


-- 
Edit bug report at https://bugs.php.net/bug.php?id=68895&edit=1
-- 
Try a snapshot (PHP 5.4):   https://bugs.php.net/fix.php?id=68895&r=trysnapshot54
Try a snapshot (PHP 5.5):   https://bugs.php.net/fix.php?id=68895&r=trysnapshot55
Try a snapshot (trunk):     https://bugs.php.net/fix.php?id=68895&r=trysnapshottrunk
Fixed in SVN:               https://bugs.php.net/fix.php?id=68895&r=fixed
Fixed in release:           https://bugs.php.net/fix.php?id=68895&r=alreadyfixed
Need backtrace:             https://bugs.php.net/fix.php?id=68895&r=needtrace
Need Reproduce Script:      https://bugs.php.net/fix.php?id=68895&r=needscript
Try newer version:          https://bugs.php.net/fix.php?id=68895&r=oldversion
Not developer issue:        https://bugs.php.net/fix.php?id=68895&r=support
Expected behavior:          https://bugs.php.net/fix.php?id=68895&r=notwrong
Not enough info:            https://bugs.php.net/fix.php?id=68895&r=notenoughinfo
Submitted twice:            https://bugs.php.net/fix.php?id=68895&r=submittedtwice
register_globals:           https://bugs.php.net/fix.php?id=68895&r=globals
PHP 4 support discontinued: https://bugs.php.net/fix.php?id=68895&r=php4
Daylight Savings:           https://bugs.php.net/fix.php?id=68895&r=dst
IIS Stability:              https://bugs.php.net/fix.php?id=68895&r=isapi
Install GNU Sed:            https://bugs.php.net/fix.php?id=68895&r=gnused
Floating point limitations: https://bugs.php.net/fix.php?id=68895&r=float
No Zend Extensions:         https://bugs.php.net/fix.php?id=68895&r=nozend
MySQL Configuration Error:  https://bugs.php.net/fix.php?id=68895&r=mysqlcfg


-- 
PHP Documentation Bugs Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

[prev in list] [next in list] [prev in thread] [next in thread] 

Configure | About | News | Add a list | Sponsored by KoreLogic