mirror of
https://github.com/php/php-src.git
synced 2024-11-25 02:44:58 +08:00
7f8b2a6533
version and sapi name.
21 lines
402 B
PHP
21 lines
402 B
PHP
<?php
|
|
// Used to print php binary info used to run
|
|
// test scripts.
|
|
// Called from run-tests.php
|
|
|
|
function dowrite($str)
|
|
{
|
|
global $term_bold, $term_norm;
|
|
$str = str_replace("%b", $term_bold, $str);
|
|
$str = str_replace("%B", $term_norm, $str);
|
|
print $str;
|
|
}
|
|
|
|
function dowriteln($str)
|
|
{
|
|
dowrite("$str\n");
|
|
}
|
|
|
|
dowriteln("PHP SAPI: ".PHP_SAPI);
|
|
dowriteln("PHP Version: ".PHP_VERSION);
|
|
?>
|