mirror of
https://github.com/php/php-src.git
synced 2026-04-17 13:01:02 +02:00
11 lines
235 B
PHP
11 lines
235 B
PHP
--TEST--
|
|
int connection_status ( void );
|
|
--CREDITS--
|
|
marcosptf - <marcosptf@yahoo.com.br> - #phparty7 - @phpsp - novatec/2015 - sao paulo - br
|
|
--FILE--
|
|
<?php
|
|
var_dump(connection_status() == CONNECTION_NORMAL);
|
|
?>
|
|
--EXPECT--
|
|
bool(true)
|