/PHP-7.3/Zend/tests/ |
H A D | property_exists.phpt | 9 var_dump(property_exists($a, "prot")); 13 var_dump(property_exists("A", "prot")); 20 var_dump(property_exists($a, "prot")); 24 var_dump(property_exists("A", "prot")); 31 static public $prot = "prot"; 32 static protected $prot2 = "prot"; 33 static private $prot3 = "prot";
|
H A D | bug43483.phpt | 7 D::prot(); 12 protected static function prot() { 13 echo "Successfully called D::prot().\n"; 19 Successfully called D::prot(). 22 [0] => prot
|
H A D | bug21888.phpt | 7 protected $prot = "protected property\n"; 9 protected function prot() { 17 $this->prot(); 21 print $this->prot;
|
H A D | bug45862.phpt | 9 var_dump(Tester::$prot); 14 static protected $prot = "protected var"; 33 ["prot"]=> 40 ["prot"]=>
|
H A D | access_modifiers_012.phpt | 6 protected function prot() { } 15 call_user_func(array($c, 'prot')); 20 In __call() for method prot()
|
H A D | call_user_func_001.phpt | 12 protected function prot($str) { 26 call_user_func(array(new $class, 'prot'), 'foobar'); 35 …meter 1 to be a valid callback, cannot access protected method testing\foo::prot() in %s on line %d
|
/PHP-7.3/ext/standard/tests/class_object/ |
H A D | get_object_vars_basic_002.phpt | 23 protected $prot = 'B::prot'; 48 ["prot"]=> 49 string(7) "B::prot" 57 ["prot"]=> 58 string(7) "B::prot"
|
H A D | get_object_vars_basic_001.phpt | 23 protected $prot = 'B::prot'; 75 ["prot"]=> 76 string(7) "B::prot" 84 ["prot"]=> 85 string(7) "B::prot" 93 ["prot"]=> 94 string(7) "B::prot"
|
H A D | get_class_vars_variation2.phpt | 23 protected $prot = "protected var"; 93 ["prot"]=> 109 ["prot"]=> 125 ["prot"]=> 137 ["prot"]=> 149 ["prot"]=> 161 ["prot"]=>
|
H A D | method_exists_basic_001.phpt | 22 protected function prot() {} 33 'pub', 'prot', 'priv', 61 Does C::prot exist? bool(true) 76 Does C::prot exist? bool(true)
|
/PHP-7.3/ext/standard/tests/serialize/ |
H A D | sleep_undefined_declared_properties.phpt | 8 protected $prot; 12 unset($this->pub, $this->prot, $this->priv); 16 return ['pub', 'prot', 'priv']; 26 Notice: serialize(): "prot" returned as member variable from __sleep() but does not exist in %s on … 29 string(53) "O:4:"Test":3:{s:3:"pub";N;s:4:"prot";N;s:4:"priv";N;}"
|
/PHP-7.3/ext/reflection/tests/ |
H A D | ReflectionMethod_basic3.phpt | 33 protected function prot() {} 47 reflectMethod("TestClass", "prot"); 48 reflectMethod("DerivedClass", "prot"); 99 Reflecting on method TestClass::prot() 103 string(4) "prot" 113 Reflecting on method DerivedClass::prot() 117 string(4) "prot"
|
H A D | ReflectionMethod_basic2.phpt | 31 protected function prot() {} 45 reflectMethod("TestClass", "prot"); 46 reflectMethod("DerivedClass", "prot"); 102 Reflecting on method TestClass::prot() 105 string(%d) "Method [ <user> protected method prot ] { 111 string(%d) "Method [ <user> protected method prot ] { 118 Reflecting on method DerivedClass::prot() 121 string(%d) "Method [ <user, inherits TestClass> protected method prot ] { 127 string(%d) "Method [ <user, inherits TestClass> protected method prot ] {
|
H A D | ReflectionProperty_basic1.phpt | 40 protected $prot = 4; 46 reflectProperty("TestClass", "prot"); 110 Reflecting on property TestClass::prot 113 string(39) "Property [ <default> protected $prot ] 116 string(39) "Property [ <default> protected $prot ] 119 Property [ <default> protected $prot ] 123 string(4) "prot"
|
H A D | ReflectionMethod_basic4.phpt | 37 protected function prot() {} 51 reflectMethod("TestClass", "prot"); 52 reflectMethod("DerivedClass", "prot"); 102 Reflecting on method TestClass::prot() 116 Reflecting on method DerivedClass::prot()
|
H A D | ReflectionProperty_getModifiers.001.phpt | 28 protected $prot = 4; 34 reflectProperty("TestClass", "prot"); 54 Reflecting on property TestClass::prot
|
H A D | ReflectionProperty_isDefault_basic.phpt | 18 protected $prot = 4; 24 reflectProperty("TestClass", "prot"); 48 Reflecting on property TestClass::prot
|
H A D | ReflectionProperty_basic2.phpt | 29 protected $prot = 4; 35 reflectProperty("TestClass", "prot"); 73 Reflecting on property TestClass::prot
|
H A D | ReflectionMethod_basic1.phpt | 43 protected function prot() {} 57 reflectMethod("TestClass", "prot"); 58 reflectMethod("DerivedClass", "prot"); 153 Reflecting on method TestClass::prot() 182 Reflecting on method DerivedClass::prot()
|
H A D | ReflectionProperty_getValue_error.phpt | 10 protected $prot = 4; 41 $propInfo = new ReflectionProperty('TestClass', 'prot'); 78 Cannot access non-public member TestClass::$prot
|
H A D | ReflectionProperty_setValue_error.phpt | 10 protected $prot = 4; 47 $propInfo = new ReflectionProperty('TestClass', 'prot'); 96 Cannot access non-public member TestClass::$prot
|
H A D | ReflectionMethod_getModifiers_basic.phpt | 31 protected function prot() {} 101 Modifiers for method TestClass::prot(): 169 Modifiers for method TestClass::prot():
|
/PHP-7.3/main/streams/ |
H A D | plain_wrapper.c | 690 int prot, flags; in php_stdiop_set_option() local 709 prot = PROT_READ; in php_stdiop_set_option() 713 prot = PROT_READ | PROT_WRITE; in php_stdiop_set_option() 717 prot = PROT_READ; in php_stdiop_set_option() 721 prot = PROT_READ | PROT_WRITE; in php_stdiop_set_option() 751 DWORD prot, acc, loffs = 0, delta = 0; in php_stdiop_set_option() local 761 prot = PAGE_READONLY; in php_stdiop_set_option() 765 prot = PAGE_READWRITE; in php_stdiop_set_option() 769 prot = PAGE_READONLY; in php_stdiop_set_option() 774 prot = PAGE_READWRITE; in php_stdiop_set_option() [all …]
|
/PHP-7.3/ext/snmp/ |
H A D | snmp.c | 1209 static int netsnmp_session_set_auth_protocol(struct snmp_session *s, char *prot) in netsnmp_session_set_auth_protocol() argument 1212 if (!strcasecmp(prot, "MD5")) { in netsnmp_session_set_auth_protocol() 1217 if (!strcasecmp(prot, "SHA")) { in netsnmp_session_set_auth_protocol() 1221 php_error_docref(NULL, E_WARNING, "Unknown authentication protocol '%s'", prot); in netsnmp_session_set_auth_protocol() 1230 static int netsnmp_session_set_sec_protocol(struct snmp_session *s, char *prot) in netsnmp_session_set_sec_protocol() argument 1232 if (!strcasecmp(prot, "DES")) { in netsnmp_session_set_sec_protocol() 1236 } else if (!strcasecmp(prot, "AES128") || !strcasecmp(prot, "AES")) { in netsnmp_session_set_sec_protocol() 1241 php_error_docref(NULL, E_WARNING, "Unknown security protocol '%s'", prot); in netsnmp_session_set_sec_protocol()
|
/PHP-7.3/ext/fileinfo/tests/ |
H A D | magic | 12135 # ftp://ftp.f-prot.com/pub/{macrdef2.zip,nomacro.def} 12140 # ftp://ftp.f-prot.com/pub/sign.zip 12159 # ftp://ftp.f-prot.com/pub/sign2.zip
|