Home
last modified time | relevance | path

Searched refs:class (Results 1 – 25 of 5381) sorted by last modified time

12345678910>>...216

/php-src/
H A DNEWS9 . Fixed bug GH-15923 (GDB: Python Exception <class 'TypeError'>:
178 ValueErrors if it is not an array of class names. (Girgias)
221 . Using "_" as a class name is now deprecated. (Girgias)
353 . The GMP class is now final and cannot be extended anymore. (Girgias)
624 . Added class Pdo\DbLib. (danack, kocsismate)
630 . Added class Pdo\Firebird. (danack, kocsismate)
634 . Added class Pdo\Mysql. (danack, kocsismate)
638 . Added class Pdo\Odbc. (danack, kocsismate)
644 . Added class Pdo\Pgsql. (danack, kocsismate)
651 . Added class Pdo\Sqlite. (danack, kocsismate)
[all …]
H A DUPGRADING367 . Added class Pdo\DbLib.
370 . Added class Pdo\Firebird.
373 . Added class Pdo\Mysql.
383 . Added class Pdo\Odbc.
386 . Added class Pdo\Pgsql.
396 . Added class Pdo\Sqlite.
900 class returns an object.
957 . The class constants are typed now.
964 . The class constants are typed now.
999 . The class constants are typed now.
[all …]
H A Dphp.ini-development290 ; The unserialize callback function will be called (with the undefined class'
291 ; name as parameter), if the unserializer finds an undefined class
293 ; not defined, or if the function doesn't include/implement the missing class.
326 ; It receives a comma-delimited list of class names.
H A Dphp.ini-production290 ; The unserialize callback function will be called (with the undefined class'
291 ; name as parameter), if the unserializer finds an undefined class
293 ; not defined, or if the function doesn't include/implement the missing class.
326 ; It receives a comma-delimited list of class names.
/php-src/Zend/tests/
H A Derror_reporting05.phpt8 class test {
H A Dbug81652.phpt6 class Foo {
/php-src/ext/dom/tests/
H A Dunsetting_properties.phpt8 class MyElement extends DOMElement {
/php-src/Zend/tests/lazy_objects/
H A Doss_fuzz_71382.phpt6 class C {
14 $reflector = new ReflectionClass(C::class);
23 printf("%s: %s\n", $e::class, $e->getMessage());
H A Dtyped_properties_004.phpt6 class C {
14 $reflector = new ReflectionClass(C::class);
24 printf("%s: %s\n", $e::class, $e->getMessage());
H A Darray_walk.phpt6 class C {
11 $reflector = new ReflectionClass(C::class);
20 printf("%s: %s\n", $e::class, $e->getMessage());
H A Doss_fuzz_71446.phpt6 class C {
13 $reflector = new ReflectionClass(C::class);
H A Dserialize___sleep.phpt6 class C {
14 $reflector = new ReflectionClass(C::class);
34 printf("%s: %s\n", $e::class, $e->getMessage());
H A Dtyped_properties_001.phpt6 class Test {
10 $name = new class {
16 $reflector = new ReflectionClass(Test::class);
H A Dtyped_properties_002.phpt9 class A implements I {}
10 class B implements J {}
11 class C implements I, J {}
13 class Test {
26 printf("%s: %s\n", $e::class, $e->getMessage());
31 printf("%s: %s\n", $e::class, $e->getMessage());
38 $reflector = new ReflectionClass(Test::class);
H A Dtyped_properties_003.phpt6 class Test {
20 $reflector = new ReflectionClass(Test::class);
/php-src/ext/reflection/tests/
H A DReflectionProperty_isFinal.phpt6 class C {
17 $rc = new ReflectionClass(C::class);
H A DReflectionProperty_getModifiers_basic.phpt6 class C {
17 class D extends C {
/php-src/ext/reflection/
H A Dphp_reflection.stub.php185 public string $class; variable in ReflectionMethod
399 public function isSubclassOf(ReflectionClass|string $class): bool {} argument
477 public string $class; variable in ReflectionProperty
482 public function __construct(object|string $class, string $property) {} argument
587 public string $class; variable in ReflectionClassConstant
592 public function __construct(object|string $class, string $constant) {} argument
870 public function __construct(object|string $class, string $constant) {} argument
880 public function __construct(object|string $class, string $constant) {} argument
H A Dphp_reflection_arginfo.h326 ZEND_ARG_OBJ_TYPE_MASK(0, class, ReflectionClass, MAY_BE_STRING, NULL)
370 ZEND_ARG_TYPE_MASK(0, class, MAY_BE_OBJECT|MAY_BE_STRING, NULL)
468 ZEND_ARG_TYPE_MASK(0, class, MAY_BE_OBJECT|MAY_BE_STRING, NULL)
/php-src/ext/soap/tests/
H A Dgh15711.wsdl28 …<soap:operation soapAction="http://localhost:81/test/interface.php?class=test/dotest" style="rpc"/>
36 <soap:address location="http://localhost:81/test/interface.php?class=test"/>
H A Dgh15711.phpt30 class TestSoapClient extends SoapClient {
/php-src/ext/reflection/tests/property_hooks/
H A DReflectionProperty_getHook_inheritance.phpt6 class A {
17 class B extends A {
28 echo ((new ReflectionProperty(A::class, 'foo'))->getHook(PropertyHookType::Get)->invoke($a)), "\n";
29 echo ((new ReflectionProperty(A::class, 'foo'))->getHook(PropertyHookType::Get)->invoke($b)), "\n";
30 echo ((new ReflectionProperty(B::class, 'foo'))->getHook(PropertyHookType::Get)->invoke($b)), "\n";
32 ((new ReflectionProperty(A::class, 'foo'))->getHook(PropertyHookType::Set)->invoke($a, null));
33 ((new ReflectionProperty(A::class, 'foo'))->getHook(PropertyHookType::Set)->invoke($b, null));
34 ((new ReflectionProperty(B::class, 'foo'))->getHook(PropertyHookType::Set)->invoke($b, null));
H A DReflectionProperty_getHooks.phpt6 class Test {
14 $rp = new ReflectionProperty(Test::class, 'prop' . $i);
30 ["class"]=>
37 ["class"]=>
47 ["class"]=>
57 ["class"]=>
H A Dbasics.phpt6 class Test {
16 abstract class Test2 {
31 $rp1 = new ReflectionProperty(Test::class, 'prop1');
39 $rp2 = new ReflectionProperty(Test::class, 'prop2');
56 $rp3 = new ReflectionProperty(Test::class, 'prop3');
70 $rp5 = new ReflectionProperty(Test::class, 'prop5');
75 $rp6 = new ReflectionProperty(Test::class, 'prop6');
92 ["class"]=>
99 ["class"]=>
110 ["class"]=>
[all …]
/php-src/ext/phar/tests/
H A Dphar_oo_008.phpt32 class MyCSVFile extends SplFileObject
64 class MyCSVFile2 extends SplFileObject

Completed in 48 milliseconds

12345678910>>...216