summaryrefslogtreecommitdiff
path: root/ext/standard/tests/general_functions/bug80771.phpt
blob: a8c9e7b54293648394b7c88889731925e8754b75 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
--TEST--
Bug #80771 (phpinfo(INFO_CREDITS) displays nothing in CLI)
--FILE--
<?php
ob_start();
phpinfo(INFO_CREDITS);
$info = ob_get_clean();

ob_start();
phpcredits();
$credits = ob_get_clean();

var_dump(strpos($info, $credits) !== false);
?>
--EXPECT--
bool(true)