mirror of
https://github.com/php/php-src.git
synced 2024-12-15 12:54:57 +08:00
17 lines
378 B
PHP
17 lines
378 B
PHP
--TEST--
|
|
Test parameter handling in socket_accept()
|
|
--SKIPIF--
|
|
<?php
|
|
if (!extension_loaded('sockets')) {
|
|
die('SKIP The sockets extension is not loaded.');
|
|
}
|
|
--FILE--
|
|
<?php
|
|
var_dump(socket_accept(null));
|
|
--CREDITS--
|
|
Till Klampaeckel, till@php.net
|
|
Berlin TestFest 2009
|
|
--EXPECTF--
|
|
Warning: socket_accept() expects parameter 1 to be resource, null given in %s on line %d
|
|
NULL
|