Home
last modified time | relevance | path

Searched refs:rc (Results 51 – 75 of 209) sorted by relevance

123456789

/PHP-5.5/ext/mysqli/tests/
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)
H A D011.phpt20 $rc = mysqli_query($link, "CREATE TABLE test_bind_result(c1 tinyint, c2 smallint,
25 if (!$rc)
28 $rc = mysqli_query($link,"INSERT INTO test_bind_result VALUES(19,2999,3999,4999999,
31 if (!$rc)
/PHP-5.5/ext/reflection/tests/
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));
H A DReflectionClass_getProperties_003.phpt19 $rc = new ReflectionClass("C");
25 var_dump($rc->getProperties(0));
28 var_dump($rc->getProperties($pubFlag));
31 var_dump($rc->getProperties($privFlag));
34 var_dump($rc->getProperties($StaticFlag | $pubFlag));
37 var_dump($rc->getProperties($StaticFlag | $privFlag));
H A DReflectionClass_getExtension_variation.phpt14 $rc=new reflectionClass('myClass');
15 var_dump( $rc->getExtension()) ;
H A DReflectionFunction_isDisabled_basic.phpt14 $rc = new ReflectionFunction('is_file');
15 var_dump($rc->isDisabled());
H A DReflectionClass_getExtensionName_variation.phpt14 $rc=new reflectionClass('myClass');
15 var_dump( $rc->getExtensionName()) ;
H A DReflectionFunction_isDeprecated_basic.phpt12 $rc = new ReflectionFunction('ereg');
13 var_dump($rc->isDeprecated());
H A DReflectionClass_getConstant_basic.phpt21 $rc = new ReflectionClass($class);
22 var_dump($rc->getConstant('a'));
23 var_dump($rc->getConstant('doesntexist'));
H A DReflectionClass_hasMethod_001.phpt33 $rc = new ReflectionClass($class);
35 var_dump($rc->hasMethod("f"));
37 var_dump($rc->hasMethod("s"));
39 var_dump($rc->hasMethod("F"));
41 var_dump($rc->hasMethod("doesntExist"));
H A DReflectionClass_hasProperty_001.phpt33 $rc = new ReflectionClass($class);
35 var_dump($rc->hasProperty("s"));
37 var_dump($rc->hasProperty("a"));
39 var_dump($rc->hasProperty("A"));
41 var_dump($rc->hasProperty("doesntExist"));
H A DReflectionClass_getExtensionName_basic.phpt10 $rc=new reflectionClass('domDocument');
11 var_dump( $rc->getExtensionName()) ;
H A DReflectionFunction_isClosure_basic.phpt15 $rc = new ReflectionFunction($closure);
16 var_dump($rc->isClosure());
H A DReflectionClass_getExtension_basic.phpt10 $rc=new reflectionClass('domDocument');
11 var_dump($rc->getExtension()) ;
H A DReflectionObject_getConstant_basic.phpt21 $rc = new ReflectionObject(new $class);
22 var_dump($rc->getConstant('a'));
23 var_dump($rc->getConstant('doesntexist'));
H A DReflectionClass_isSubclassOf_error1.phpt6 $rc = new ReflectionClass('A');
8 var_dump($rc->isSubclassOf('X'));
H A DReflectionClass_CannotClone_basic.phpt12 $rc = new ReflectionClass("stdClass");
13 $rc2 = clone($rc);
H A Dbug42976.phpt16 $rc = new ReflectionClass('C');
18 $rc->newInstance($x); // causes crash
21 $rc->newInstanceArgs(array($x)); // causes crash
/PHP-5.5/ext/odbc/
H A Dphp_odbc_includes.h55 #define SQL_SUCCEEDED(rc) (((rc)&(~1))==0) argument
72 #define SQL_SUCCEEDED(rc) (((rc)&(~1))==0) argument
83 #define SQL_SUCCEEDED(rc) (((rc)&(~1))==0) argument
/PHP-5.5/Zend/tests/traits/
H A Dbug60173.phpt8 $rc = new ReflectionClass('foo');
9 $rc->newInstance();
/PHP-5.5/ext/pcre/pcrelib/
H A Dpcreposix.c325 int rc, so, eo; in regexec() local
376 rc = pcre_exec((const pcre *)preg->re_pcre, NULL, string + so, (eo - so), in regexec()
379 if (rc == 0) rc = (int)nmatch; /* All captured slots were filled in */ in regexec()
383 if (rc >= 0) in regexec()
388 for (i = 0; i < (size_t)rc; i++) in regexec()
402 switch(rc) in regexec()
/PHP-5.5/ext/fileinfo/
H A Dmagicdata.patch28 0 string/wt #!\ /bin/rc Plan 9 rc shell script text executable
54 0 string/wt #!\ /bin/rc Plan 9 rc shell script text executable
80 0 string/wt #!\ /bin/rc Plan 9 rc shell script text executable
/PHP-5.5/ext/mysqli/
H A Dmysqli_embedded.c43 int index, rc; in PHP_FUNCTION() local
98 rc = mysql_server_init(argc, arguments, groups); in PHP_FUNCTION()
105 if (rc) { in PHP_FUNCTION()
/PHP-5.5/tests/classes/
H A Dautoload_017.phpt13 $rc = new ReflectionClass("stdClass");
16 $rc->implementsInterface("UndefI");
H A Dautoload_016.phpt13 $rc = new ReflectionClass("stdClass");
16 $rc->getProperty("UndefC::p");

Completed in 68 milliseconds

123456789