php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #57250 The name of the method to add must be lower
Submitted: 2006-09-20 10:05 UTC Modified: 2006-09-20 12:07 UTC
From: linanhui at hotmail dot com Assigned:
Status: Not a bug Package: runkit (PECL)
PHP Version: 5.1.6 OS: centos 4.2
Private report: No CVE-ID: None
View Add Comment Developer Edit
Anyone can comment on a bug. Have a simpler test case? Does it work for you on a different platform? Let us know!
Just going to say 'Me too!'? Don't clutter the database with that please !
Your email address:
MUST BE VALID
Solve the problem:
13 + 35 = ?
Subscribe to this entry?

 
 [2006-09-20 10:05 UTC] linanhui at hotmail dot com
Description:
------------
runkit_method_add()
The name of the method to add must be lower

Reproduce code:
---------------
<?php
class Example {
   public function fooBar() {
       echo "foo";
   }
}

runkit_method_add('Example','fooBar3','','echo "bar";');
$object=new Example();
$object->fooBar3();
?> 


Expected result:
----------------
Fatal error: Call to undefined method Example::fooBar3() in /var/www/html/test.php on line 57

Actual result:
--------------
echo "bar"

Patches

Add a Patch

Pull Requests

Add a Pull Request

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2006-09-20 12:07 UTC] pollita@php.net
Actually, no, the name of the method to add does not need to be lowercase.  That's why you're seeing the expected results:  add a method, get a method.  Yay! Profit!
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Fri Apr 26 15:01:56 2024 UTC