pajoye          Tue Mar 16 11:45:45 2004 EDT

  Added files:                 
    /php-src/tests/classes      bug27504.phpt 
  Log:
  - initial commit
    test case for #27504 (http://bugs.php.net/bug.php?id=27504)
  
  

http://cvs.php.net/co.php/php-src/tests/classes/bug27504.phpt?r=1.1&p=1
Index: php-src/tests/classes/bug27504.phpt
+++ php-src/tests/classes/bug27504.phpt
--TEST--
Bug #27504 (call_user_func_array allows calling of private/protected methods)
--FILE--
<?php
        class foo {
                function __construct () {
                        $this->bar('1');
                }
                private function bar ( $param ) {
                        echo 'Called function foo:bar('.$param.')'."\n";
                }
        }

        $foo = new foo();

        call_user_func_array( array( $foo , 'bar' ) , array( '2' ) );

        $foo->bar('3');
?>
--EXPECTF--
Called function foo:bar(%d)

Fatal error: Call to private method foo::bar() from context '' in %s on line 13

-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to