php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Request #56618 Functionality to add code to the beginning/end of an existing function/method
Submitted: 2005-10-28 12:23 UTC Modified: 2011-10-27 07:17 UTC
From: sebastian@php.net Assigned: sebastian (profile)
Status: Closed Package: runkit (PECL)
PHP Version: 5_1 CVS-2005-10-28 (dev) OS: Irrelevant
Private report: No CVE-ID: None
Welcome back! If you're the original bug submitter, here's where you can edit the bug or add additional notes.
If you forgot your password, you can retrieve your password here.
Password:
Status:
Package:
Bug Type:
Summary:
From: sebastian@php.net
New email:
PHP Version: OS:

 

 [2005-10-28 12:23 UTC] sebastian@php.net
Description:
------------
This is a request for a Runkit function that adds PHP code either at the beginning or at the end of an already defined function or method.

This can currently be achieved by the following

  runkit_method_rename('Foo', 'bar', '__bar');
  runkit_method_add('Foo', 'bar', '', "echo 'Hello '; Foo::__bar(); echo '!';");

but a convenience function for this would be nice.

Reproduce code:
---------------
<?php
class Foo {
  public function bar() {
    print 'World';
  }
}

runkit_method_prepend_code('Foo', 'bar', "print 'Hello ';");
runkit_method_append_code('Foo', 'bar', "print '!';");

$foo = new Foo;
$foo->bar();
?>

Expected result:
----------------
Hello World.


Patches

Pull Requests

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2011-10-27 07:17 UTC] sebastian@php.net
-Status: Open +Status: Closed -Assigned To: +Assigned To: sebastian
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Sat Dec 21 16:01:28 2024 UTC