-=[ Mr. Bumblebee ]=-
_Indonesia_

Path : /usr/src/php/sapi/cli/tests/
File Upload :
Current File : //usr/src/php/sapi/cli/tests/004.phpt

--TEST--
show information about function
--SKIPIF--
<?php 
include "skipif.inc"; 
if (!extension_loaded("reflection")) {
	die("skip reflection extension required");
}
?>
--FILE--
<?php

$php = getenv('TEST_PHP_EXECUTABLE');

var_dump(`$php -n --rf unknown`);
var_dump(`$php -n --rf echo`);
var_dump(`$php -n --rf phpinfo`);

echo "Done\n";
?>
--EXPECTF--	
string(45) "Exception: Function unknown() does not exist
"
string(42) "Exception: Function echo() does not exist
"
string(119) "Function [ <internal:standard> function phpinfo ] {

  - Parameters [1] {
    Parameter #0 [ <optional> $what ]
  }
}

"
Done

Copyright © 2017 || Recoded By Mr.Bumblebee