|
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-2026 The PHP GroupAll rights reserved. |
Last updated: Mon Jan 05 10:00:02 2026 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');