1--TEST--
2Test get_extension_funcs() function: basic test
3--FILE--
4<?php
5/* Prototype  : array get_extension_funcs  ( string $module_name  )
6 * Description: Returns an array with the names of the functions of a module.
7 * Source code: Zend/zend_builtin_functions.c
8 * Alias to functions:
9 */
10
11echo "Simple testcase for get_extension_funcs() function\n";
12
13$result = get_extension_funcs("standard");
14var_dump(gettype($result));
15var_dump(in_array("cos", $result));
16
17?>
18===DONE===
19--EXPECT--
20Simple testcase for get_extension_funcs() function
21string(5) "array"
22bool(true)
23===DONE===
24