Home
last modified time | relevance | path

Searched refs:rc (Results 76 – 100 of 168) sorted by relevance

1234567

/PHP-8.1/ext/mysqli/tests/
H A D002.phpt20 $rc = mysqli_query($link,"CREATE TABLE test_fetch_null(col1 tinyint, col2 smallint,
28 if (!$rc)
31 …$rc = mysqli_query($link, "INSERT INTO test_fetch_null(col1,col10, col11) VALUES(1,'foo1', 1000),(…
32 if (!$rc)
H A D020.phpt21 $rc = @mysqli_query($link,"CREATE TABLE test_bind_result(
30 if (!$rc)
31 $rc = mysqli_query($link,"CREATE TABLE test_bind_result(
/PHP-8.1/ext/reflection/tests/
H A DReflectionClass_newInstanceArgs_002.phpt13 $rc = new ReflectionClass('A');
14 $a = $rc->newInstanceArgs('x');
H A DReflectionClass_getInterfaces_002.phpt16 $rc = new ReflectionClass('I7');
17 $interfaces = $rc->getInterfaces();
H A DReflectionFunction_isGenerator_basic.phpt41 $rc = new ReflectionClass('Foo');
42 foreach($rc->getMethods() as $m) {
H A Dunion_types.phpt26 $rc = new ReflectionClass(Test::class);
27 $rp = $rc->getProperty('prop');
36 $rp = $rc->getProperty('prop');
42 $rp = $rc->getProperty('prop');
H A DReflectionClass_getConstants_basic.phpt21 $rc = new ReflectionClass($class);
22 var_dump($rc->getConstants());
H A DReflectionClass_isSubclassOf_error2.phpt23 $rc = new ReflectionClass($class);
24 var_export($rc->isSubclassOf($base));
H A Dintersection_types.phpt24 $rc = new ReflectionClass(Test::class);
25 $rp = $rc->getProperty('prop');
37 $rp = $rc->getProperty('prop');
H A DReflectionClass_getMethod_001.phpt33 $rc = new ReflectionClass($class);
35 var_dump($rc->getMethod("f"));
37 var_dump($rc->getMethod("s"));
39 var_dump($rc->getMethod("F"));
42 var_dump($rc->getMethod("doesNotExist"));
H A DReflectionClass_getProperty_001.phpt33 $rc = new ReflectionClass($class);
36 var_dump($rc->getProperty("s"));
42 var_dump($rc->getProperty("a"));
48 var_dump($rc->getProperty("A"));
54 var_dump($rc->getProperty("doesNotExist"));
H A DReflectionObject_getConstants_basic.phpt21 $rc = new ReflectionObject(new $class);
22 var_dump($rc->getConstants());
H A DReflectionObject_getConstructor_basic.phpt38 $rc = new ReflectionObject(new $class);
39 $rm = $rc->getConstructor();
/PHP-8.1/ext/intl/tests/
H A Dcollator_get_error_code.phpt16 function check_rc( $rc, $expected )
18 return ( $rc === $expected ? "ok" : "failed" ) . "\n";
H A Dbug62915-2.phpt26 $rc = new ReflectionClass($subclass);
27 $obj = $rc->newInstanceArgs($subclass::$ARGS);
H A Dcollator_get_locale2.phpt30 $rc = ut_coll_get_locale( $coll, $locale );
35 dump( $rc ) );
/PHP-8.1/Zend/tests/type_declarations/
H A Dcallable_002.phpt19 $rc = new ReflectionFunction($closure);
20 var_dump($rc->getParameters()[0]->isCallable());
/PHP-8.1/ext/date/lib/
H A Dastro.c225 int rc = 0; /* Return cde from function - usually 0 */ in timelib_astro_rise_set_altitude() local
270 rc = -1; in timelib_astro_rise_set_altitude()
275 rc = +1; in timelib_astro_rise_set_altitude()
296 return rc; in timelib_astro_rise_set_altitude()
/PHP-8.1/ext/standard/tests/strings/
H A Dbug72434.phpt12 // Increment the reference counter by 1 -> rc is 0
14 // Increment the reference counter by 1 again -> rc is 1
/PHP-8.1/sapi/cli/tests/
H A D005.phpt12 var_dump(`"$php" -n --rc unknown`);
13 var_dump(`"$php" -n --rc stdclass`);
14 var_dump(`"$php" -n --rc exception`);
/PHP-8.1/ext/mysqli/
H A Dmysqli_api.c143 my_ulonglong rc; in PHP_FUNCTION() local
235 rc = 1; in mysqli_stmt_bind_param_do_bind()
243 if (rc) { in mysqli_stmt_bind_param_do_bind()
258 return rc; in mysqli_stmt_bind_param_do_bind()
361 zend_ulong rc; in mysqli_stmt_bind_result_do_bind() local
504 if (rc) { in mysqli_stmt_bind_result_do_bind()
522 return rc; in mysqli_stmt_bind_result_do_bind()
546 zend_ulong rc; in PHP_FUNCTION() local
573 zend_ulong rc; in PHP_FUNCTION() local
594 if (rc) { in PHP_FUNCTION()
[all …]
/PHP-8.1/Zend/tests/
H A Dassign_dim_ref_free.phpt2 Assigning rc=1 reference to next dim
/PHP-8.1/sapi/cli/
H A Dps_title.h32 extern const char* ps_title_errno(int rc);
/PHP-8.1/ext/standard/tests/directory/
H A DDirectoryClass_basic_001.phpt11 $rc = new ReflectionClass("Directory");
12 echo $rc;
/PHP-8.1/Zend/tests/array_unpack/
H A Dref1.phpt2 Array unpacking with element rc=1

Completed in 36 milliseconds

1234567