Home
last modified time | relevance | path

Searched refs:class_exists (Results 1 – 25 of 81) sorted by relevance

1234

/PHP-7.1/ext/standard/tests/class_object/
H A Dclass_exists_basic_001.phpt2 Test class_exists() function : basic functionality
5 /* Prototype : proto bool class_exists(string classname [, bool autoload])
11 echo "*** Testing class_exists() : basic functionality ***\n";
18 var_dump( class_exists('C', true) );
20 var_dump( class_exists('stdclass', true) );
23 var_dump( class_exists('D', false) );
25 var_dump( class_exists('stdclass', false) );
28 var_dump( class_exists('E') );
30 var_dump( class_exists('stdclass') );
35 *** Testing class_exists() : basic functionality ***
[all …]
H A Dclass_exists_error_001.phpt2 Test class_exists() function : error conditions (wrong number of arguments)
5 /* Prototype : proto bool class_exists(string classname [, bool autoload])
15 echo "*** Testing class_exists() : error conditions ***\n";
18 echo "\n-- Testing class_exists() function with Zero arguments --\n";
19 var_dump( class_exists() );
21 //Test class_exists with one more than the expected number of arguments
26 var_dump( class_exists($classname, $autoload, $extra_arg) );
31 *** Testing class_exists() : error conditions ***
33 -- Testing class_exists() function with Zero arguments --
35 Warning: class_exists() expects at least 1 parameter, 0 given in %s on line 16
[all …]
H A Dclass_exists_variation_001.phpt2 Test class_exists() function : usage variations - unexpected types for argument 1
5 /* Prototype : proto bool class_exists(string classname [, bool autoload])
20 echo "*** Testing class_exists() : usage variations ***\n";
80 var_dump( class_exists($value, $autoload) );
86 *** Testing class_exists() : usage variations ***
123 Error: 2 - class_exists() expects parameter 1 to be string, array given, %s(77)
128 Error: 2 - class_exists() expects parameter 1 to be string, array given, %s(77)
133 Error: 2 - class_exists() expects parameter 1 to be string, array given, %s(77)
138 Error: 2 - class_exists() expects parameter 1 to be string, array given, %s(77)
143 Error: 2 - class_exists() expects parameter 1 to be string, array given, %s(77)
[all …]
H A Dclass_exists_variation_002.phpt2 Test class_exists() function : usage variations - unexpected types for argument 2
5 /* Prototype : proto bool class_exists(string classname [, bool autoload])
20 echo "*** Testing class_exists() : usage variations ***\n";
84 var_dump( class_exists($classname, $value) );
90 *** Testing class_exists() : usage variations ***
131 Error: 2 - class_exists() expects parameter 2 to be boolean, array given, %s(81)
136 Error: 2 - class_exists() expects parameter 2 to be boolean, array given, %s(81)
141 Error: 2 - class_exists() expects parameter 2 to be boolean, array given, %s(81)
146 Error: 2 - class_exists() expects parameter 2 to be boolean, array given, %s(81)
151 Error: 2 - class_exists() expects parameter 2 to be boolean, array given, %s(81)
[all …]
H A Dclass_exists_variation_003.phpt2 Test class_exists() function : usage variations - case sensitivity
5 /* Prototype : proto bool class_exists(string classname [, bool autoload])
12 var_dump(class_exists('casesensitivitytest'));
/PHP-7.1/Zend/tests/
H A D012.phpt2 class_exists() tests
9 var_dump(class_exists());
10 var_dump(class_exists("qwerty"));
11 var_dump(class_exists(""));
12 var_dump(class_exists(array()));
13 var_dump(class_exists("test", false));
14 var_dump(class_exists("foo", false));
15 var_dump(class_exists("foo"));
16 var_dump(class_exists("stdClass", false));
17 var_dump(class_exists("stdClass"));
[all …]
H A Dclass_exists_002.phpt10 var_dump(class_exists(''));
11 var_dump(class_exists(NULL));
12 var_dump(class_exists('FOO'));
13 var_dump(class_exists('bar'));
14 var_dump(class_exists(1));
15 var_dump(class_exists(new stdClass));
25 Warning: class_exists() expects parameter 1 to be string, object given in %s on line %d
H A Dclass_exists_001.phpt2 Testing class_exists() inside namespace
15 var_dump(class_exists('\bar'));
16 var_dump(class_exists('bar'));
17 var_dump(class_exists('foo\bar'));
18 var_dump(class_exists('foo\foo'));
19 var_dump(class_exists('foo'));
H A Dclass_exists_003.phpt14 var_dump(class_exists('a'));
15 var_dump(class_exists('b'));
16 var_dump(class_exists('c'));
17 var_dump(class_exists('d'));
H A Dbug46813.phpt2 Bug #46813: class_exists doesn`t work with fully qualified namespace
16 var_dump(class_exists('\test\inner', true));
18 var_dump(class_exists('\test\inner', true));
H A Dbug26697.phpt2 Bug #26697 (calling class_exists on a nonexistent class in __autoload results in segfault)
11 var_dump(class_exists('NotExistingClass'));
15 var_dump(class_exists('NotExistingClass'));
/PHP-7.1/ext/spl/tests/
H A Dbug52339.phpt2 Bug #52339: SPL autoloader breaks class_exists()
5 var_dump(class_exists('asdfasdf'));
7 var_dump(class_exists('asdfasdf'));
H A Dspl_autoload_001.phpt13 if (!class_exists("TestClass")) {
22 if (!class_exists("TestClass")) {
29 if (!class_exists("TestClass")) {
48 var_dump(class_exists("TestClass", true));
58 var_dump(class_exists("TestClass", true));
63 var_dump(class_exists("TestClass", true));
H A Dspl_autoload_012.phpt22 class_exists('ThisClassDoesNotExist');
37 class_exists('ThisClassDoesNotExist');
56 #2 %sspl_autoload_012.php(%d): class_exists('ThisClassDoesNo...')
63 #2 %sspl_autoload_012.php(%d): class_exists('ThisClassDoesNo...')
/PHP-7.1/tests/classes/
H A Dautoload_005.phpt6 if (class_exists('autoload_root', false)) die('skip Autoload test classes exist already');
13 var_dump(class_exists($class_name, false));
18 var_dump(class_exists('autoload_derived', false));
19 var_dump(class_exists('autoload_derived', false));
H A Dautoload_001.phpt2 ZE2 Autoload and class_exists
6 if (class_exists('autoload_root', false)) die('skip Autoload test classes exist already');
17 var_dump(class_exists('autoload_root'));
H A Dautoload_004.phpt6 if (class_exists('autoload_root', false)) die('skip Autoload test classes exist already');
13 var_dump(class_exists($class_name));
18 var_dump(class_exists('autoload_derived'));
H A Dautoload_006.phpt6 if (class_exists('autoload_root', false)) die('skip Autoload test classes exist already');
18 var_dump(class_exists('autoload_implements', false));
26 var_dump(class_exists('autoload_implements', false));
H A Dautoload_019.phpt8 class_exists("undefinedCLASS");
11 class_exists("unDefinedClass");
H A Dautoload_003.phpt6 if (class_exists('autoload_root', false)) die('skip Autoload test classes exist already');
17 var_dump(class_exists('autoload_derived'));
/PHP-7.1/ext/spl/examples/
H A Dtree.php31 if (!class_exists("DirectoryTreeIterator", false)) require_once("directorytreeiterator.inc");
32 if (!class_exists("DirectoryGraphIterator", false)) require_once("directorygraphiterator.inc");
H A Dini_groups.php29 if (!class_exists("KeyFilter", false)) require_once("keyfilter.inc");
30 if (!class_exists("IniGroups", false)) require_once("inigroups.inc");
H A Ddba_dump.php29 if (!class_exists("DbaReader", false)) require_once("dbareader.inc");
30 if (!class_exists("KeyFilter", false)) require_once("keyfilter.inc");
/PHP-7.1/ext/standard/tests/serialize/
H A Dbug30234.phpt5 if (class_exists('autoload_root', false)) die('skip Autoload test classes exist already');
17 var_dump(class_exists('autoload_implements', false));
26 var_dump(class_exists('autoload_implements', false));
/PHP-7.1/ext/phar/phar/
H A Dphar.php15 if (!class_exists('PHP_Archive', 0)) {
22 if (!class_exists('Phar',0)) {

Completed in 33 milliseconds

1234