Home
last modified time | relevance | path

Searched refs:rc (Results 26 – 50 of 164) sorted by relevance

1234567

/PHP-8.0/ext/reflection/tests/
H A DReflectionClass_modifiers_001.phpt17 $rc = new ReflectionClass($class);
18 var_dump($rc->isFinal());
19 var_dump($rc->isInterface());
20 var_dump($rc->isAbstract());
21 var_dump($rc->getModifiers());
H A DReflectionClass_setStaticPropertyValue_003.phpt11 $rc = new ReflectionClass('Test');
14 $rc->setStaticPropertyValue("y", "foo");
18 $rc->setStaticPropertyValue("y", "21");
25 $rc->setStaticPropertyValue("x", "foo");
29 $rc->setStaticPropertyValue("x", "42");
H A Dbug79487.phpt10 $rc = new ReflectionClass('Foo');
11 var_dump($rc->getStaticProperties());
20 $rc = new ReflectionClass(B::class);
22 var_dump($rc->getStaticProperties());
H A Dbug77772.phpt11 $rc = new ReflectionClass(Test::class);
12 foreach ($rc->getMethods(null) as $method) {
15 foreach ($rc->getProperties(null) as $prop) {
H A DReflectionClass_hasConstant_001.phpt16 $rc = new ReflectionClass("C");
18 var_dump($rc->hasConstant("myConst"));
20 var_dump($rc->hasConstant("MyCoNsT"));
22 var_dump($rc->hasConstant("doesNotExist"));
H A DReflectionClass_hasConstant_basic.phpt9 $rc = new ReflectionClass("C");
12 var_dump($rc->hasConstant('foo'));
15 var_dump($rc->hasConstant('bar'));
H A Dbug78774.phpt11 $rc = new ReflectionClass(Test::class);
12 $rp = $rc->getProperty('prop');
14 $rp2 = $rc->getProperty('prop2');
H A Dconstructor_promotion.phpt16 $rc = new ReflectionClass(Test::class);
17 echo $rc, "\n";
19 $y = $rc->getProperty('y');
22 $z = $rc->getProperty('z');
H A DReflectionFunction_isClosure_basic.phpt9 $rc = new ReflectionFunction($closure);
10 var_dump($rc->isClosure());
H A DReflectionFunction_isDeprecated_basic.phpt9 $rc = new ReflectionFunction('var_dump');
10 var_dump($rc->isDeprecated());
H A DReflectionClass_getExtension_variation.phpt14 $rc=new reflectionClass('myClass');
15 var_dump( $rc->getExtension()) ;
H A DReflectionClass_getExtensionName_variation.phpt14 $rc=new reflectionClass('myClass');
15 var_dump( $rc->getExtensionName()) ;
H A Dbug42976.phpt16 $rc = new ReflectionClass('C');
18 $rc->newInstance($x); // causes crash
21 $rc->newInstanceArgs(array($x)); // causes crash
H A DReflectionClass_getMethods_003.phpt19 $rc = new ReflectionClass("C");
25 var_dump($rc->getMethods(0));
28 var_dump($rc->getMethods($pubFlag));
31 var_dump($rc->getMethods($privFlag));
34 var_dump($rc->getMethods($StaticFlag | $pubFlag));
37 var_dump($rc->getMethods($StaticFlag | $privFlag));
/PHP-8.0/Zend/tests/
H A Dstringable_trait.phpt26 $rc = new ReflectionClass(T::class);
27 var_dump($rc->getInterfaceNames());
28 $rc = new ReflectionClass(T2::class);
29 var_dump($rc->getInterfaceNames());
H A Dinterface_with_tostring.phpt10 $rc = new ReflectionClass(MyStringable::class);
11 var_dump($rc->getInterfaceNames());
/PHP-8.0/ext/ldap/
H A Dldap.c175 rc = -1; in _php_ldap_control_to_array()
237 rc = -1; in _php_ldap_control_to_array()
258 rc = -1; in _php_ldap_control_to_array()
316 rc = -1; in _php_ldap_control_from_array()
347 rc = -1; in _php_ldap_control_from_array()
370 rc = -1; in _php_ldap_control_from_array()
568 rc = -1; in _php_ldap_control_from_array()
1120 int rc; in PHP_FUNCTION() local
1176 int rc; in PHP_FUNCTION() local
4098 int rc; in PHP_FUNCTION() local
[all …]
/PHP-8.0/tests/classes/
H A Dconstants_comments_001.phpt22 foreach ($r->getReflectionConstants() as $rc) {
23 echo $rc->getName() . " : " . $rc->getDocComment() . "\n";
/PHP-8.0/sapi/cli/
H A Dps_title.c302 const char* ps_title_errno(int rc) in ps_title_errno() argument
304 switch(rc) in ps_title_errno()
337 int rc = is_ps_title_available(); in set_ps_title() local
338 if (rc != PS_TITLE_SUCCESS) in set_ps_title()
339 return rc; in set_ps_title()
395 int rc = is_ps_title_available(); in get_ps_title() local
396 if (rc != PS_TITLE_SUCCESS) in get_ps_title()
397 return rc; in get_ps_title()
/PHP-8.0/ext/mysqli/tests/
H A D009.phpt25 $rc = mysqli_query($link,"CREATE TABLE test_bind_fetch(c1 bigint default 5,
33 if (!$rc)
36 $rc = mysqli_query($link, "INSERT INTO test_bind_fetch (c2,c3,c4,c5,c6,c7,c8) ".
38 if (!$rc)
44 $rc = mysqli_stmt_fetch($stmt);
61 …$rc = mysqli_query($link, "CREATE TABLE test_bind_fetch_uint(c1 integer unsigned, c2 integer unsig…
62 if (!$rc)
71 $rc = mysqli_stmt_fetch($stmt);
H A D003.phpt19 $rc = @mysqli_query($link,"CREATE TABLE test_bind_result(
38 if (!$rc)
39 $rc = @mysqli_query($link,"CREATE TABLE test_bind_result(
48 if (!$rc)
51 $rc = mysqli_query($link, "INSERT INTO test_bind_result VALUES(
58 if (!$rc)
/PHP-8.0/sapi/phpdbg/
H A Dphpdbg_io.c256 int sock = -1, rc; local
273 rc = inet_pton(AF_INET, addr, &serveraddr);
274 if (1 == rc) {
280 rc = inet_pton(AF_INET6, addr, &serveraddr);
281 if (1 == rc) {
293 rc = getaddrinfo(addr, port_buf, &hints, &res);
295 rc = getaddrinfo(NULL, port_buf, &hints, &res);
298 if (0 != rc) {
300 if (rc == EAI_SYSTEM) {
312 snprintf(buf, sizeof(buf), "Host '%s' not found. %s", addr, estrdup(gai_strerror(rc)));
/PHP-8.0/ext/fileinfo/libmagic/
H A Dcompress.c564 int rc; in uncompresszlib() local
580 if (rc != Z_OK) in uncompresszlib()
584 if (rc != Z_OK && rc != Z_STREAM_END) in uncompresszlib()
589 if (rc != Z_OK) in uncompresszlib()
608 int rc; in uncompressbzlib() local
613 if (rc != BZ_OK) in uncompressbzlib()
625 if (rc != BZ_OK && rc != BZ_STREAM_END) in uncompressbzlib()
632 if (rc != BZ_OK) in uncompressbzlib()
651 int rc; in uncompressxzlib() local
656 if (rc != LZMA_OK) in uncompressxzlib()
[all …]
/PHP-8.0/ext/spl/tests/
H A DRecursiveIteratorIterator_not_initialized.phpt6 $rc = new ReflectionClass(RecursiveIteratorIterator::class);
7 $it = $rc->newInstanceWithoutConstructor();
/PHP-8.0/ext/odbc/
H A Dphp_odbc_includes.h49 #define SQL_SUCCEEDED(rc) (((rc)&(~1))==0) argument
66 #define SQL_SUCCEEDED(rc) (((rc)&(~1))==0) argument
77 #define SQL_SUCCEEDED(rc) (((rc)&(~1))==0) argument

Completed in 59 milliseconds

1234567