Searched refs:is_resource (Results 1 – 25 of 83) sorted by relevance
1234
/PHP-7.3/ext/standard/tests/general_functions/ |
H A D | is_resource_error.phpt | 2 Test is_resource() function : error conditions 5 /* Prototype : bool is_resource ( mixed $var ) 10 echo "*** Testing is_resource() : error conditions ***\n"; 12 echo "\n-- Testing is_resource() function with Zero arguments --\n"; 13 var_dump( is_resource() ); 18 var_dump( is_resource($res, $extra_arg) ); 23 *** Testing is_resource() : error conditions *** 25 -- Testing is_resource() function with Zero arguments -- 27 Warning: is_resource() expects exactly 1 parameter, 0 given in %s on line %d 30 -- Testing is_resource() function with more than expected no. of arguments -- [all …]
|
H A D | is_resource_basic.phpt | 2 Test is_resource() function : basic functionality 5 /* Prototype : bool is_resource ( mixed $var ) 10 echo "*** Testing is_resource() : basic functionality ***\n"; 42 if (is_resource($vars[$i])) { 52 echo "Resource type..after file open is_resource() returns"; 53 if (is_resource($res)) { 62 echo "Resource type..after file close is_resource() returns"; 63 if (is_resource($res)) { 73 *** Testing is_resource() : basic functionality *** 87 Resource type..after file open is_resource() returns TRUE [all …]
|
H A D | is_resource.phpt | 2 Bug #27822 (is_resource() returns TRUE for closed resources) 7 var_dump(is_resource($f));
|
/PHP-7.3/ext/pgsql/ |
H A D | mysql_users.php | 21 assert(is_resource($db)); 40 assert(is_resource($db)); 63 assert(is_resource($db));
|
/PHP-7.3/ext/enchant/tests/ |
H A D | broker_request_pwl_dict.phpt | 8 if(!is_resource(enchant_broker_init())) {die("skip, resource dont load\n");} 15 if (is_resource($broker)) { 19 if (is_resource($requestDict)) {
|
H A D | broker_init.phpt | 8 if (!is_resource(enchant_broker_init())) {die("skip, resource dont load\n");} 13 if (is_resource($broker)) {
|
H A D | broker_free.phpt | 8 if (!is_resource(enchant_broker_init())) {die("skip, resource dont load\n");} 13 if (is_resource($broker)) {
|
H A D | broker_get_error.phpt | 8 if (!is_resource(enchant_broker_init())) {die("skip, resource dont load\n");} 13 if (is_resource($broker)) {
|
H A D | broker_free_01.phpt | 8 if (!is_resource(enchant_broker_init())) {die("skip, resource dont load\n");} 13 if (is_resource($broker)) {
|
H A D | broker_request_dict_01.phpt | 8 if (!is_resource(enchant_broker_init())) {die("skip, resource dont load\n");} 18 if (is_resource($dict)) {
|
H A D | broker_set_ordering.phpt | 8 if (!is_resource(enchant_broker_init())) {die("skip, resource dont load\n");} 17 if (is_resource($broker)) {
|
H A D | broker_request_dict.phpt | 8 if (!is_resource(enchant_broker_init())) {die("skip, resource dont load\n");} 20 if (is_resource($dict)) {
|
H A D | dict_get_error.phpt | 8 if (!is_resource(enchant_broker_init())) {die("skip, resource dont load\n");} 16 if (is_resource($broker)) {
|
H A D | dict_describe.phpt | 8 if (!is_resource(enchant_broker_init())) {die("skip, resource dont load\n");} 16 if (is_resource($broker)) {
|
H A D | dict_quick_check_01.phpt | 8 if (!is_resource(enchant_broker_init())) {die("skip, resource dont load\n");} 17 if (is_resource($broker)) {
|
H A D | dict_suggest.phpt | 8 if (!is_resource(enchant_broker_init())) {die("skip, resource dont load\n");} 17 if (is_resource($broker)) {
|
H A D | dict_add_to_personal.phpt | 8 if (!is_resource(enchant_broker_init())) {die("skip, resource dont load\n");} 17 if (is_resource($broker)) {
|
H A D | dict_add_to_session.phpt | 8 if (!is_resource(enchant_broker_init())) {die("skip, resource dont load\n");} 17 if (is_resource($broker)) {
|
H A D | dict_check.phpt | 8 if (!is_resource(enchant_broker_init())) {die("skip, resource dont load\n");} 17 if (is_resource($broker)) {
|
H A D | dict_is_in_session.phpt | 8 if (!is_resource(enchant_broker_init())) {die("skip, resource dont load\n");} 17 if (is_resource($broker)) {
|
H A D | dict_store_replacement.phpt | 8 if (!is_resource(enchant_broker_init())) {die("skip, resource dont load\n");} 18 if (is_resource($broker)) {
|
H A D | broker_free_dict.phpt | 8 if(!is_resource(enchant_broker_init())) {die("skip, resource dont load\n");} 16 if (is_resource($broker)) {
|
H A D | enchant_broker_set_dict_path.phpt | 9 if (!is_resource(enchant_broker_init())) {die("skip, resource dont load\n");} 20 if (is_resource($broker)) {
|
H A D | broker_free_02.phpt | 8 if(!is_resource(enchant_broker_init())) {die("skip, resource dont load\n");} 17 if (is_resource($broker)) {
|
/PHP-7.3/ext/zip/tests/ |
H A D | zip_open.phpt | 11 echo is_resource($zip) ? "OK" : "Failure";
|
Completed in 18 milliseconds
1234