/PHP-7.2/sapi/apache2handler/ |
H A D | apache_config.c | 59 php_conf_rec *d = dummy; in real_value_hnd() 62 …phpapdebug((stderr, "Getting %s=%s for %p (%d)\n", name, value, dummy, zend_hash_num_elements(&d->… in real_value_hnd() 79 return real_value_hnd(cmd, dummy, name, value, PHP_INI_PERDIR); in php_apache_value_handler() 84 return real_value_hnd(cmd, dummy, name, value, PHP_INI_SYSTEM); in php_apache_admin_value_handler() 98 return real_value_hnd(cmd, dummy, arg1, bool_val, status); in real_flag_hnd() 103 return real_flag_hnd(cmd, dummy, name, value, PHP_INI_PERDIR); in php_apache_flag_handler() 108 return real_flag_hnd(cmd, dummy, name, value, PHP_INI_SYSTEM); in php_apache_admin_flag_handler() 190 void apply_config(void *dummy) in apply_config() argument 192 php_conf_rec *d = dummy; in apply_config() 229 void *create_php_config(apr_pool_t *p, char *dummy) in create_php_config() argument [all …]
|
/PHP-7.2/Zend/tests/try/ |
H A D | try_catch_finally_004.phpt | 7 function dummy($msg) { 15 dummy("catch"); 18 dummy("finally"); 21 dummy("catch2"); 23 dummy("finally2");
|
H A D | catch_finally_003.phpt | 5 function dummy($msg) { 11 dummy("try"); 16 dummy("finally");
|
/PHP-7.2/ext/pcre/tests/ |
H A D | bug63055.phpt | 13 $dummy = array("dummy"); /* used to trigger gc_collect_cycles */ 14 $dummy[1] = &$dummy; 17 $matches[2] = $dummy;
|
H A D | multiline.phpt | 6 var_dump(preg_match_all('/^.{2,3}$/', "aei\nou", $dummy)); 7 var_dump(preg_match_all('/^.{2,3}$/', "aei\nou\n", $dummy)); 8 var_dump(preg_match_all('/^.{2,3}$/m', "aei\nou", $dummy)); 9 var_dump(preg_match_all('/^.{2,3}$/m', "aei\nou\n", $dummy));
|
H A D | backtrack_limit.phpt | 5 if (@preg_match_all('/\p{N}/', '0123456789', $dummy) === false) { 15 var_dump(preg_match_all('/.*\p{N}/', '0123456789', $dummy)); 18 var_dump(preg_match_all('/\p{Nd}/', '0123456789', $dummy));
|
H A D | recursion_limit.phpt | 5 if (@preg_match_all('/\p{N}/', '0123456789', $dummy) === false) { 15 var_dump(preg_match_all('/\p{Ll}(\p{L}((\p{Ll}\p{Ll})))/', 'aeiou', $dummy)); 18 var_dump(preg_match_all('/\p{Ll}\p{L}\p{Ll}\p{Ll}/', 'aeiou', $dummy));
|
H A D | bug73483.phpt | 5 $regex = "#dummy#"; 12 }, "dummy"));
|
/PHP-7.2/Zend/tests/ |
H A D | bug63055.phpt | 15 $dummy = array("dummy"); /* used to trigger gc_collect_cycles */ 16 $dummy[1] = &$dummy; 19 $matches[2] = $dummy;
|
H A D | bug70156.phpt | 19 class dummy { 32 new dummy(); 35 #0 dummy->bar() called at [%sbug70156.php:%d] 36 #1 dummy->foo1() called at [%sbug70156.php:%d] 37 #2 dummy->__construct() called at [%sbug70156.php:%d]
|
H A D | bug46308.phpt | 7 public static $dummy = NULL ; 23 class dummy 27 main::$dummy = new dummy();
|
H A D | closure_042.phpt | 2 Closure 042: Binding an instance to a non-scoped non-static closures gives it a dummy scope 12 var_dump($rm->getClosureScopeClass()->name); //dummy sope is Closure 18 var_dump($rm->getClosureScopeClass()->name); //dummy sope is Closure
|
H A D | bug32674.phpt | 44 public $dummy; 55 //$dummy = 'this will not crash'; 56 $obj->dummy = 'this will crash';
|
/PHP-7.2/ext/mysqli/tests/ |
H A D | 016.phpt | 15 if (!mysqli_query($link, "SET @dummy='foobar'")) 18 if (!$stmt = mysqli_prepare($link, "SELECT @dummy")) 21 mysqli_stmt_bind_result($stmt, $dummy); 25 var_dump($dummy);
|
/PHP-7.2/ext/opcache/tests/ |
H A D | bug65665.phpt | 59 dummy: 73 goto dummy; 93 dummy: 104 goto dummy;
|
H A D | compact_literals.phpt | 26 if (!function_exists("dummy")) { 27 function dummy() { 32 dummy(); 34 $dummy = function () { var_dump("lambda" . "dummy"); }; 35 $dummy(); 169 string(5) "dummy"
|
H A D | issue0057.phpt | 15 function dummy($query) { 31 dummy(0);
|
/PHP-7.2/main/ |
H A D | php_main.h | 31 PHPAPI void php_request_shutdown(void *dummy); 32 PHPAPI void php_request_shutdown_for_exec(void *dummy); 38 PHPAPI void php_request_shutdown_for_hook(void *dummy);
|
/PHP-7.2/ext/spl/tests/ |
H A D | bug63680.phpt | 7 function dummy() { 14 dummy();
|
/PHP-7.2/win32/ |
H A D | dllmain.c | 36 BOOL WINAPI DllMain(HINSTANCE inst, DWORD reason, LPVOID dummy) in DllMain() argument 84 ret = ret && xmlDllMain(inst, reason, dummy); in DllMain()
|
/PHP-7.2/ext/curl/tests/ |
H A D | bug69485.phpt | 10 public function dummy() { 18 curl_setopt($ch, CURLOPT_WRITEFUNCTION, array($o, "dummy"));
|
/PHP-7.2/tests/lang/ |
H A D | bug29566.phpt | 7 $dummy=""; 8 unset($dummy);
|
/PHP-7.2/ext/reflection/tests/ |
H A D | bug63614.phpt | 5 function dummy() { 21 $reflect = new ReflectionFunction("dummy");
|
/PHP-7.2/ext/pdo_oci/tests/ |
H A D | pdo_oci_attr_prefetch_1.phpt | 23 $s = $dbh->prepare("select dummy from dual" ); 34 $s = $dbh->prepare("select dummy from dual" ); 45 $s = $dbh->prepare("select dummy from dual" ); 56 $s = $dbh->prepare("select dummy from dual" );
|
/PHP-7.2/ext/oci8/tests/ |
H A D | lob_035.phpt | 55 $dummy = oci_new_descriptor($c, OCI_D_LOB); 57 var_dump(oci_lob_copy($dummy, $row1[0])); 58 var_dump(oci_lob_copy($row2[0], $dummy)); 66 unset($dummy->descriptor); 67 var_dump(oci_lob_size($dummy));
|