/PHP-5.4/sapi/apache2filter/ |
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() 162 void apply_config(void *dummy) in apply_config() argument 164 php_conf_rec *d = dummy; in apply_config() 201 void *create_php_config(apr_pool_t *p, char *dummy) in create_php_config() argument [all …]
|
/PHP-5.4/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() 184 void apply_config(void *dummy) in apply_config() argument 186 php_conf_rec *d = dummy; in apply_config() 224 void *create_php_config(apr_pool_t *p, char *dummy) in create_php_config() argument [all …]
|
/PHP-5.4/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) { 14 var_dump(preg_match_all('/.*\p{N}/', '0123456789', $dummy)); 17 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) { 14 var_dump(preg_match_all('/\p{Ll}(\p{L}((\p{Ll}\p{Ll})))/', 'aeiou', $dummy)); 17 var_dump(preg_match_all('/\p{Ll}\p{L}\p{Ll}\p{Ll}/', 'aeiou', $dummy));
|
/PHP-5.4/Zend/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 | 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-5.4/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-5.4/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-5.4/ext/spl/tests/ |
H A D | bug63680.phpt | 7 function dummy() { 14 dummy();
|
/PHP-5.4/tests/lang/ |
H A D | bug29566.phpt | 7 $dummy=""; 8 unset($dummy);
|
/PHP-5.4/ext/reflection/tests/ |
H A D | bug63614.phpt | 5 function dummy() { 21 $reflect = new ReflectionFunction("dummy");
|
/PHP-5.4/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));
|
/PHP-5.4/ext/soap/tests/ |
H A D | bug70388.phpt | 7 $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-5.4/ext/standard/tests/serialize/ |
H A D | bug62373.phpt | 9 $dummy = array(); 19 $dummy[] = $a;
|
/PHP-5.4/ext/pdo_sqlite/tests/ |
H A D | bug46542.phpt | 12 $a = new A('sqlite:' . __DIR__ . '/dummy.db'); 20 unlink(__DIR__ . '/dummy.db');
|
/PHP-5.4/ext/standard/tests/general_functions/ |
H A D | bug60723.phpt | 12 error_log("dummy"); 19 [%s ASIA/Chongqing] dummy
|
/PHP-5.4/ext/xmlwriter/tests/ |
H A D | 006.phpt | 16 xmlwriter_write_element_ns($xw, 'foo', 'bar', 'urn:foo', 'dummy content'); 26 <!DOCTYPE foo SYSTEM "urn:bar"><foo><foo:bar xmlns:foo="urn:foo">dummy content</foo:bar></foo>
|
H A D | OO_006.phpt | 17 $xw->writeElementNS('foo', 'bar', 'urn:foo', 'dummy content'); 27 <!DOCTYPE foo SYSTEM "urn:bar"><foo><foo:bar xmlns:foo="urn:foo">dummy content</foo:bar></foo>
|
/PHP-5.4/ |
H A D | config.guess | 415 sed 's/^ //' << EOF >$dummy.c 436 $CC_FOR_BUILD -o $dummy $dummy.c && 512 sed 's/^ //' << EOF >$dummy.c 523 if $CC_FOR_BUILD -o $dummy $dummy.c && SYSTEM_NAME=`$dummy` 625 (CCOPTS= $CC_FOR_BUILD -o $dummy $dummy.c 2>/dev/null) && HP_ARCH=`$dummy` 658 sed 's/^ //' << EOF >$dummy.c 683 $CC_FOR_BUILD -o $dummy $dummy.c && SYSTEM_NAME=`$dummy` && 871 sed 's/^ //' << EOF >$dummy.c 894 sed 's/^ //' << EOF >$dummy.c 999 sed 's/^ //' << EOF >$dummy.c [all …]
|
/PHP-5.4/ext/xml/tests/ |
H A D | bug30266.phpt | 18 public $dummy = "a"; 35 $this->dummy = "b";
|
/PHP-5.4/sapi/cli/tests/ |
H A D | php_cli_server_004.phpt | 25 User-Agent:dummy 46 string(21) "HTTP_USER_AGENT:dummy"
|