Home
last modified time | relevance | path

Searched refs:dummy (Results 1 – 25 of 143) sorted by relevance

123456

/PHP-7.4/Zend/tests/try/
H A Dtry_catch_finally_004.phpt7 function dummy($msg) {
15 dummy("catch");
18 dummy("finally");
21 dummy("catch2");
23 dummy("finally2");
H A Dcatch_finally_003.phpt5 function dummy($msg) {
11 dummy("try");
16 dummy("finally");
/PHP-7.4/sapi/apache2handler/
H A Dapache_config.c57 php_conf_rec *d = dummy; in real_value_hnd()
60 …phpapdebug((stderr, "Getting %s=%s for %p (%d)\n", name, value, dummy, zend_hash_num_elements(&d->… in real_value_hnd()
77 return real_value_hnd(cmd, dummy, name, value, PHP_INI_PERDIR); in php_apache_value_handler()
82 return real_value_hnd(cmd, dummy, name, value, PHP_INI_SYSTEM); in php_apache_admin_value_handler()
96 return real_value_hnd(cmd, dummy, arg1, bool_val, status); in real_flag_hnd()
101 return real_flag_hnd(cmd, dummy, name, value, PHP_INI_PERDIR); in php_apache_flag_handler()
106 return real_flag_hnd(cmd, dummy, name, value, PHP_INI_SYSTEM); in php_apache_admin_flag_handler()
188 void apply_config(void *dummy) in apply_config() argument
190 php_conf_rec *d = dummy; in apply_config()
227 void *create_php_config(apr_pool_t *p, char *dummy) in create_php_config() argument
[all …]
/PHP-7.4/ext/pcre/tests/
H A Dbug63055.phpt13 $dummy = array("dummy"); /* used to trigger gc_collect_cycles */
14 $dummy[1] = &$dummy;
17 $matches[2] = $dummy;
H A Dmultiline.phpt6 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 Dbacktrack_limit.phpt5 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 Drecursion_limit.phpt5 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 Dbug73483.phpt5 $regex = "#dummy#";
12 }, "dummy"));
/PHP-7.4/Zend/tests/
H A Dbug63055.phpt15 $dummy = array("dummy"); /* used to trigger gc_collect_cycles */
16 $dummy[1] = &$dummy;
19 $matches[2] = $dummy;
H A Dbug70156.phpt19 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 Dbug46308.phpt7 public static $dummy = NULL ;
23 class dummy
27 main::$dummy = new dummy();
H A Dclosure_042.phpt2 Closure 042: Binding an instance to a non-scoped non-static closures gives it a dummy scope
10 var_dump($rm->getClosureScopeClass()->name); //dummy sope is Closure
16 var_dump($rm->getClosureScopeClass()->name); //dummy sope is Closure
H A Dbug32674.phpt44 public $dummy;
55 //$dummy = 'this will not crash';
56 $obj->dummy = 'this will crash';
/PHP-7.4/ext/mysqli/tests/
H A D016.phpt15 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.4/ext/opcache/tests/
H A Dbug65665.phpt59 dummy:
73 goto dummy;
93 dummy:
104 goto dummy;
H A Dissue0057.phpt15 function dummy($query) {
31 dummy(0);
/PHP-7.4/ext/spl/tests/
H A Dbug63680.phpt7 function dummy() {
14 dummy();
/PHP-7.4/win32/
H A Ddllmain.c36 BOOL WINAPI DllMain(HINSTANCE inst, DWORD reason, LPVOID dummy) in DllMain() argument
84 ret = ret && xmlDllMain(inst, reason, dummy); in DllMain()
/PHP-7.4/ext/curl/tests/
H A Dbug69485.phpt10 public function dummy() {
18 curl_setopt($ch, CURLOPT_WRITEFUNCTION, array($o, "dummy"));
/PHP-7.4/tests/lang/
H A Dbug29566.phpt7 $dummy="";
8 unset($dummy);
/PHP-7.4/ext/reflection/tests/
H A Dbug63614.phpt5 function dummy() {
21 $reflect = new ReflectionFunction("dummy");
/PHP-7.4/ext/soap/tests/
H A Dbug70388.phpt7 $dummy = unserialize('O:10:"SoapClient":3:{s:3:"uri";s:1:"X";s:8:"location";s:22:"http://localhost/…
9 var_dump($dummy->notexisting());
/PHP-7.4/ext/soap/tests/bugs/
H A Dbug69085.phpt10 $dummy = unserialize('O:10:"SoapClient":5:{s:3:"uri";s:1:"a";s:8:"location";s:22:"http://localhost/…
12 $dummy->whatever();
/PHP-7.4/ext/pdo_sqlite/tests/
H A Dbug46542.phpt12 $a = new A('sqlite:' . __DIR__ . '/dummy.db');
20 unlink(__DIR__ . '/dummy.db');
/PHP-7.4/ext/standard/tests/serialize/
H A Dbug62373.phpt9 $dummy = array();
19 $dummy[] = $a;

Completed in 44 milliseconds

123456