|   | php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login | 
| 
 PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits              [2007-11-22 21:38 UTC] felipe@php.net
 | |||||||||||||||||||||||||||
|  Copyright © 2001-2025 The PHP Group All rights reserved. | Last updated: Fri Oct 31 05:00:02 2025 UTC | 
Description: ------------ The property in class String is named $lange, the instance of ReflectionProperty is created with 'lenght'. Reproduce code: --------------- class String { public $laenge = 5; } // Erzeuge eine Instanz der Klasse ReflectionPropety $prop = new ReflectionProperty('String', 'length'); Expected result: ---------------- $prop = new ReflectionProperty('String', 'laenge');