xref: /php-src/ext/reflection/tests/019.phpt (revision a920db8f)
1--TEST--
2ReflectionFunction::getExtensionName
3--FILE--
4<?php
5$f = new ReflectionFunction("sleep");
6var_dump($f->getExtensionName());
7?>
8--EXPECT--
9string(8) "standard"
10