mirror of
https://github.com/php/php-src.git
synced 2024-11-24 10:24:11 +08:00
17 lines
242 B
PHP
17 lines
242 B
PHP
--TEST--
|
|
Check if get_required_files works
|
|
--CREDITS--
|
|
Sebastian Schürmann
|
|
sschuermann@chip.de
|
|
Testfest 2009 Munich
|
|
--FILE--
|
|
<?php
|
|
$files = get_required_files();
|
|
var_dump($files);
|
|
?>
|
|
--EXPECTF--
|
|
array(1) {
|
|
[0]=>
|
|
%string|unicode%(%d)%s
|
|
}
|