mirror of
https://github.com/php/php-src.git
synced 2025-08-16 05:58:45 +02:00
49 lines
1.1 KiB
PHP
49 lines
1.1 KiB
PHP
--TEST--
|
|
ReflectionMethod::isConstructor()
|
|
--FILE--
|
|
<?php
|
|
|
|
class NewCtor {
|
|
function __construct() {
|
|
echo "In " . __METHOD__ . "\n";
|
|
}
|
|
|
|
}
|
|
echo "New-style constructor:\n";
|
|
$methodInfo = new ReflectionMethod("NewCtor", "__construct");
|
|
var_dump($methodInfo->isConstructor());
|
|
|
|
class ExtendsNewCtor extends NewCtor {
|
|
}
|
|
echo "\nInherited new-style constructor\n";
|
|
$methodInfo = ReflectionMethod::createFromMethodName("ExtendsNewCtor::__construct");
|
|
var_dump($methodInfo->isConstructor());
|
|
|
|
class X {
|
|
function Y() {
|
|
echo "In " . __METHOD__ . "\n";
|
|
}
|
|
}
|
|
echo "\nNot a constructor:\n";
|
|
$methodInfo = ReflectionMethod::createFromMethodName("X::Y");
|
|
var_dump($methodInfo->isConstructor());
|
|
|
|
class Y extends X {
|
|
}
|
|
echo "\nInherited method of the same name as the class:\n";
|
|
$methodInfo = ReflectionMethod::createFromMethodName("Y::Y");
|
|
var_dump($methodInfo->isConstructor());
|
|
|
|
?>
|
|
--EXPECT--
|
|
New-style constructor:
|
|
bool(true)
|
|
|
|
Inherited new-style constructor
|
|
bool(true)
|
|
|
|
Not a constructor:
|
|
bool(false)
|
|
|
|
Inherited method of the same name as the class:
|
|
bool(false)
|