Home
last modified time | relevance | path

Searched refs:classes (Results 101 – 125 of 230) sorted by relevance

12345678910

/PHP-8.2/Zend/tests/type_declarations/mixed/inheritance/
H A Dmixed_parameter_inheritance_error4.phpt2 Test that a mixed parameter type can't be overridden by a union type of classes
/PHP-8.2/Zend/tests/
H A Dbug24436.phpt2 Bug #24436 (isset()/empty() produce errors with non-existent variables in classes)
H A Dbug62441.phpt2 Bug #62441: Incorrect strong typing in namespaced child classes
H A Dbug79022.phpt2 Bug #79022 (class_exists returns True for classes that are not ready to be used)
H A Danon_class_name.phpt2 Generated names for anonymous classes
H A Dbug43200.phpt2 Bug #43200 (Interface implementation / inheritance not possible in abstract classes)
/PHP-8.2/ext/mysqli/tests/
H A Dbug38003.phpt2 Bug #38003 (in classes inherited from MySQLi it's possible to call private constructors from invali…
/PHP-8.2/ext/mbstring/tests/
H A Dmb_ereg_variation4.phpt2 Test mb_ereg() function : usage variations - pass different character classes as pattern for multib…
12 * Test how character classes match a multibyte string
H A Dmb_ereg_variation3.phpt2 Test mb_ereg() function : usage variations - pass different character classes to see they match cor…
13 * test that mb_ereg can match correctly when passed different character classes.
/PHP-8.2/tests/classes/
H A Dprivate_members_serialization.phpt2 Verifies that it is possible to return private member names of parent classes in __sleep
H A Dautoload_005.phpt5 if (class_exists('autoload_root', false)) die('skip Autoload test classes exist already');
H A Dautoload_006.phpt5 if (class_exists('autoload_root', false)) die('skip Autoload test classes exist already');
/PHP-8.2/Zend/tests/traits/
H A Dbug76773-deprecated.phpt2 Bug #76773 (Traits used on the parent are ignored for child classes) [original test with deprecated…
/PHP-8.2/ext/standard/tests/serialize/
H A Dserialization_objects_009.phpt2 Custom unserialization of classes with no custom unserializer.
/PHP-8.2/ext/opcache/tests/
H A Dbug72014.phpt2 Bug #72014 (Including a file with anonymous classes multiple times leads to fatal error)
/PHP-8.2/ext/reflection/tests/
H A Dbug52854.phpt2 Bug #52854: ReflectionClass::newInstanceArgs does not work for classes without constructors
H A DReflectionClass_hasMethod_001.phpt29 $classes = array("pubf", "subpubf", "protf", "subprotf",
31 foreach($classes as $class) {
H A DReflectionClass_hasProperty_001.phpt29 $classes = array("pubf", "subpubf", "protf", "subprotf",
31 foreach($classes as $class) {
/PHP-8.2/Zend/tests/array_unpack/
H A Dclasses.phpt2 Array unpacking with classes
/PHP-8.2/Zend/tests/enum/
H A Dkeyword-no-bc-break.phpt2 Enum keyword can still be used in classes, namespaces, functions and constants
/PHP-8.2/ext/json/tests/
H A Dbug61978.phpt2 Bug #61978 (Object recursion not detected for classes that implement JsonSerializable)
/PHP-8.2/Zend/tests/anon/
H A D003.phpt2 reusing anonymous classes
/PHP-8.2/ext/mysqli/
H A Dmysqli.c54 static HashTable classes; variable
380 intern->prop_handler = zend_hash_find_ptr(&classes, mysqli_base_class->name); in mysqli_objects_new()
497 zend_hash_init(&classes, 0, NULL, NULL, 1); in PHP_MINIT_FUNCTION()
509 zend_hash_add_ptr(&classes, mysqli_driver_class_entry->name, &mysqli_driver_properties); in PHP_MINIT_FUNCTION()
515 zend_hash_add_ptr(&classes, mysqli_link_class_entry->name, &mysqli_link_properties); in PHP_MINIT_FUNCTION()
521 zend_hash_add_ptr(&classes, mysqli_warning_class_entry->name, &mysqli_warning_properties); in PHP_MINIT_FUNCTION()
528 zend_hash_add_ptr(&classes, mysqli_result_class_entry->name, &mysqli_result_properties); in PHP_MINIT_FUNCTION()
534 zend_hash_add_ptr(&classes, mysqli_stmt_class_entry->name, &mysqli_stmt_properties); in PHP_MINIT_FUNCTION()
552 zend_hash_destroy(&classes); in PHP_MSHUTDOWN_FUNCTION()
/PHP-8.2/sapi/phpdbg/tests/
H A Dgh15268.phpt15 i classes
/PHP-8.2/ext/standard/
H A Dvar.c1353 zval *classes, *max_depth; in php_unserialize_with_options() local
1355 classes = zend_hash_str_find_deref(options, "allowed_classes", sizeof("allowed_classes")-1); in php_unserialize_with_options()
1356 …if (classes && Z_TYPE_P(classes) != IS_ARRAY && Z_TYPE_P(classes) != IS_TRUE && Z_TYPE_P(classes) … in php_unserialize_with_options()
1357 …owed_classes\" must be of type array|bool, %s given", function_name, zend_zval_type_name(classes)); in php_unserialize_with_options()
1361 if(classes && (Z_TYPE_P(classes) == IS_ARRAY || !zend_is_true(classes))) { in php_unserialize_with_options()
1363 …zend_hash_init(class_hash, (Z_TYPE_P(classes) == IS_ARRAY)?zend_hash_num_elements(Z_ARRVAL_P(class… in php_unserialize_with_options()
1365 if(class_hash && Z_TYPE_P(classes) == IS_ARRAY) { in php_unserialize_with_options()
1369 ZEND_HASH_FOREACH_VAL(Z_ARRVAL_P(classes), entry) { in php_unserialize_with_options()

Completed in 85 milliseconds

12345678910