Home
last modified time | relevance | path

Searched refs:self (Results 101 – 125 of 316) sorted by relevance

12345678910>>...13

/PHP-7.1/ext/mysqlnd/
H A Dmysqlnd_debug.h28 enum_func_status (*open)(MYSQLND_DEBUG * self, zend_bool reopen);
29 void (*set_mode)(MYSQLND_DEBUG * self, const char * const mode);
30 enum_func_status (*log)(MYSQLND_DEBUG * self, unsigned int line, const char * const file,
32 enum_func_status (*log_va)(MYSQLND_DEBUG * self, unsigned int line, const char * const file,
34 zend_bool (*func_enter)(MYSQLND_DEBUG * self, unsigned int line, const char * const file,
36 …enum_func_status (*func_leave)(MYSQLND_DEBUG * self, unsigned int line, const char * const file, u…
37 enum_func_status (*close)(MYSQLND_DEBUG * self);
38 enum_func_status (*free_handle)(MYSQLND_DEBUG * self);
/PHP-7.1/Zend/tests/
H A Dbug41633_2.phpt6 const A = self::B;
11 Fatal error: Uncaught Error: Undefined class constant 'self::B' in %sbug41633_2.php:5
H A Dbug66015.phpt12 self::FIRST => 'first',
20 var_export(self::$array);
H A Dbug69676.phpt2 Bug #69676: Resolution of self::FOO in class constants not correct
7 const myDynConst = self::myConst;
H A Dno_class_const_propagation_in_closures.phpt2 self:: class constants should not be propagated into closures, due to scope rebinding
11 return self::C;
H A Dbug30451.phpt20 var_dump(self::method());
23 var_dump(self::$property);
H A Dbug41633_3.phpt2 Bug #41633.3 (Crash instantiating classes with self-referencing constants)
12 Fatal error: Uncaught Error: Cannot declare self-referencing constant 'Foo::B' in %sbug41633_3.php:…
H A Dbug60139.phpt19 $self = $this;
20 $this->x = function() use ($self) {};
H A Dbug70957.phpt2 Bug #70957 (self::class can not be resolved with reflection for abstract class)
8 function bar($a = self::class) {}
H A Dbug71622.phpt20 var_dump(is_callable("self::$method"));
21 self::$method();
H A Dbug37138.phpt2 Bug #37138 (__autoload tries to load callback'ed self and parent)
8 public static function e2 () {call_user_func (array ('self', 'e'));}
H A Dbug39346.phpt12 self::$instances[$this->_id] = $this;
16 unset(self::$instances[$this->_id]);
H A DselfParent_001.phpt7 const myDynConst = self::myConst;
10 var_dump(self::myDynConst);
/PHP-7.1/Zend/tests/return_types/
H A Dinheritance004.phpt2 Internal covariant return type of self
6 public static function test() : self {
/PHP-7.1/Zend/tests/traits/
H A Dno_static_arg_binding.phpt2 Don't statically bind arguments for self:: calls in traits
11 self::method($i);
/PHP-7.1/ext/reflection/tests/
H A Dbug39884.phpt2 Bug #39884 (ReflectionParameter::getClass() throws exception for type hint self)
7 function paramTest(self $param)
H A Dbug53915.phpt8 const B = self::A;
17 const B = self::A;
/PHP-7.1/ext/openssl/tests/
H A Dbug65538.phar116 fseek($fp, self::LEN);
135 $info = self::_unpack($m);
138 if ($f & self::GZ) {
145 if ($f & self::BZ2) {
152 $temp = self::tmpdir();
165 self::$temp = $temp;
166 self::$origdir = getcwd();
192 include self::START;
254 if ($entry[4] & self::GZ) {
256 } elseif ($entry[4] & self::BZ2) {
[all …]
/PHP-7.1/Zend/tests/closures/
H A Dclosure_from_callable_basic.phpt74 echo 'Access public instance method of self object through "self::" ';
79 echo 'Access public instance method of parent object through "self::" to parent method';
84 echo 'Access proteced instance method of parent object through "self::" to parent method';
116 Access public instance method of self object through "self::" OK
117 Access public instance method of parent object through "self::" to parent method OK
118 Access proteced instance method of parent object through "self::" to parent method OK
/PHP-7.1/tests/classes/
H A Dproperty_override_privateStatic_privateStatic.phpt10 echo self::$p . "\n";
19 echo self::$p . "\n";
H A Dproperty_override_privateStatic_protectedStatic.phpt10 echo self::$p . "\n";
19 echo self::$p . "\n";
H A Dproperty_override_privateStatic_publicStatic.phpt10 echo self::$p . "\n";
19 echo self::$p . "\n";
H A Dproperty_override_protectedStatic_protectedStatic.phpt10 echo self::$p . "\n";
19 echo self::$p . "\n";
H A Dproperty_override_protectedStatic_publicStatic.phpt10 echo self::$p . "\n";
19 echo self::$p . "\n";
H A Dproperty_override_publicStatic_publicStatic.phpt10 echo self::$p . "\n";
19 echo self::$p . "\n";

Completed in 28 milliseconds

12345678910>>...13