|   | php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login | 
| 
 PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits              [2007-07-26 14:27 UTC] jani@php.net
  [2007-07-26 15:24 UTC] jani@php.net
 | |||||||||||||||||||||||||||
|  Copyright © 2001-2025 The PHP Group All rights reserved. | Last updated: Thu Oct 30 04:00:02 2025 UTC | 
Description: ------------ Unexpected results returned when using positioned parameters in sscanf() Reproduce code: --------------- $test = sscanf('test string', '%2$s %1$s'); print_r($test); Expected result: ---------------- array( [0] => 'string', [1] => 'test' ) Actual result: -------------- Array ( [0] => [1] => [3] => test [2] => string )