/PHP-8.0/ext/standard/tests/random/ |
H A D | reflection.phpt | 5 $rf = new ReflectionFunction('random_bytes'); 6 var_dump($rf->getNumberOfParameters()); 7 var_dump($rf->getNumberOfRequiredParameters()); 9 $rf = new ReflectionFunction('random_int'); 10 var_dump($rf->getNumberOfParameters()); 11 var_dump($rf->getNumberOfRequiredParameters());
|
/PHP-8.0/ext/reflection/tests/internal_parameter_default_value/ |
H A D | check_all.phpt | 6 function checkDefaults(ReflectionFunctionAbstract $rf) { 7 foreach ($rf->getParameters() as $param) { 12 echo "{$rf->getName()}: {$e->getMessage()}\n"; 19 $rf = new ReflectionFunction($func); 20 checkDefaults($rf);
|
/PHP-8.0/ext/reflection/tests/ |
H A D | ReflectionFunction_getClosureScopeClass.phpt | 6 $rf = new ReflectionFunction($closure); 7 var_dump($rf->getClosureScopeClass()); 16 $rf = new ReflectionFunction($closure); 17 var_dump($rf->getClosureScopeClass());
|
H A D | ReflectionFunction_isDisabled_basic.phpt | 11 $rf = new ReflectionFunction('is_file'); 12 var_dump($rf->isDisabled()); 17 $rf = new ReflectionFunction('is_string'); 18 var_dump($rf->isDisabled());
|
H A D | bug70982.phpt | 17 $rf = new ReflectionClass('Bar'); 18 $rf->setStaticPropertyValue('abc', 'hi'); 19 $foo = $rf->newInstance();
|
H A D | ReflectionMethod_getClosureThis.phpt | 29 $rf = new ReflectionFunction($closure); 31 var_dump($rf->getClosureThis()); 36 $rf = new ReflectionFunction($closure); 38 var_dump($rf->getClosureThis());
|
H A D | ReflectionFunction_getClosureThis.phpt | 6 $rf = new ReflectionFunction($closure); 7 var_dump($rf->getClosureThis());
|
H A D | ReflectionType_001.phpt | 23 ] as $idx => $rf) { 24 foreach ($rf->getParameters() as $idx2 => $rp) { 66 ] as $idx => $rf) { 68 var_dump($rf->hasReturnType()); 69 $ra = $rf->getReturnType();
|
/PHP-8.0/ext/mysqli/tests/ |
H A D | bug74737.phpt | 10 $rf = new ReflectionFunction('mysqli_get_client_info'); 11 echo $rf->getNumberOfParameters(); 13 echo $rf->getNumberOfRequiredParameters();
|
H A D | bug75434.phpt | 10 $rf = new ReflectionFunction('mysqli_fetch_all'); 11 var_dump($rf->getNumberOfParameters()); 12 var_dump($rf->getNumberOfRequiredParameters());
|
/PHP-8.0/ext/standard/tests/file/windows_mb_path/ |
H A D | test_cp1250_to_utf8_4.phpt | 23 $item = "Árvíztűrő tükörfúrógép"; // cp1250 specific chars 46 getting basename of %s\Árvíztűrő tükörfúrógép42\Árvíztűrő tükörfúrógép4 47 string(32) "Árvíztűrő tükörfúrógép4" 49 string(%d) "%s\Árvíztűrő tükörfúrógép42\Árvíztűrő tükörfúrógép4"
|
H A D | test_cp1250_to_utf8_5.phpt | 23 $item = "Árvíztűrő tükörfúrógép"; // cp1250 specific chars 48 getting basename of %s\Árvíztűrő tükörfúrógép33 49 string(33) "Árvíztűrő tükörfúrógép33" 51 string(%d) "%s\Árvíztűrő tükörfúrógép33"
|
H A D | test_cp1250_to_utf8_3.phpt | 23 $item = "Árvíztűrő tükörfúrógép"; // cp1250 specific chars
|
/PHP-8.0/ext/intl/tests/ |
H A D | bug74705.phpt | 11 $rf = new ReflectionFunction('collator_get_sort_key'); 12 var_dump($rf->getNumberOfParameters()); 13 var_dump($rf->getNumberOfRequiredParameters());
|
H A D | bug74468.phpt | 12 $rf = new ReflectionFunction('collator_sort_with_sort_keys'); 13 var_dump($rf->getNumberOfParameters()); 14 var_dump($rf->getNumberOfRequiredParameters());
|
/PHP-8.0/sapi/cli/tests/ |
H A D | 004.phpt | 12 var_dump(`$php -n --rf unknown`); 13 var_dump(`$php -n --rf echo`); 14 var_dump(`$php -n --rf phpinfo`);
|
/PHP-8.0/Zend/tests/attributes/ |
H A D | 029_reflect_internal_symbols.phpt | 6 $rf = new ReflectionFunction('unserialize'); 7 var_dump($rf->getAttributes());
|
/PHP-8.0/ext/gd/libgd/ |
H A D | gd_filter.c | 236 double rf,gf,bf; in gdImageContrast() local 259 rf = (double)r/255.0; in gdImageContrast() 260 rf = rf-0.5; in gdImageContrast() 261 rf = rf*contrast; in gdImageContrast() 262 rf = rf+0.5; in gdImageContrast() 263 rf = rf*255.0; in gdImageContrast() 277 rf = (rf > 255.0)? 255.0 : ((rf < 0.0)? 0.0:rf); in gdImageContrast() 281 new_pxl = gdImageColorAllocateAlpha(src, (int)rf, (int)gf, (int)bf, a); in gdImageContrast() 283 new_pxl = gdImageColorClosestAlpha(src, (int)rf, (int)gf, (int)bf, a); in gdImageContrast()
|
/PHP-8.0/Zend/tests/type_declarations/ |
H A D | callable_002.phpt | 13 $rf = new ReflectionFunction("foo"); 14 var_dump($rf->getParameters()[0]->isCallable());
|
/PHP-8.0/build/ |
H A D | Makefile.gcov | 44 rm -rf lcov_html/ 51 @rm -rf gcovr_html/
|
/PHP-8.0/ext/zlib/tests/ |
H A D | gzopen_variation9.phpt | 13 $modes = array('r+', 'rf', 'w+' , 'e'); 35 mode=rf
|
/PHP-8.0/ext/session/ |
H A D | mod_files.sh | 43 rm -rf $directory/*
|
/PHP-8.0/ext/dba/ |
H A D | install_cdb.sh | 47 rm -rf tmp
|
/PHP-8.0/Zend/tests/named_params/ |
H A D | call_user_func.phpt | 60 $rf = new ReflectionFunction($test); 61 $rf->invoke('A', c: 'C'); 62 $rf->invokeArgs(['A', 'c' => 'C']);
|
/PHP-8.0/scripts/dev/ |
H A D | makedist | 144 rm -rf autom4te.cache/ 170 rm -rf "$prefix" "$prefix".tar.*
|