Home
last modified time | relevance | path

Searched refs:var (Results 151 – 175 of 885) sorted by relevance

12345678910>>...36

/PHP-5.6/Zend/tests/
H A Dbug51421.phpt9 abstract public function __construct(ExampleClass $var);
18 …_construct() must be compatible with TestInterface::__construct(ExampleClass $var) in %s on line %d
H A Dbug39775.phpt6 var $array = array();
7 function __get($var) {
H A Dbug54367.phpt13 return function ($var) use ($offset) { // here is the problem
14 var_dump($offset, $var);
/PHP-5.6/ext/standard/tests/strings/
H A Dparse_str_basic1.phpt18 echo "\nBasic test WITH undefined var for result arg\n";
23 echo "\nBasic test WITH existing non-array var for result arg\n";
44 Basic test WITH undefined var for result arg
55 Basic test WITH existing non-array var for result arg
/PHP-5.6/ext/standard/tests/general_functions/
H A Dphp_uname_variation1.phpt55 "undefined var" => $undefined_var,
58 "unset var" => $unset_var,
108 -- Iterator undefined var --
110 -- Iterator unset var --
H A Dgetservbyname_variation12.phpt20 foreach ( $variation_array as $var ) {
21 var_dump(getservbyname( $service, $var ) );
H A Dgetservbyname_variation5.phpt20 foreach ( $variation_array as $var ) {
21 var_dump(getservbyname( $var , $protocol ) );
H A Dintval_variation2.phpt5 /* Prototype : int intval(mixed var [, int base])
23 $var = 1;
91 'undefined var' => @$undefined_var,
94 'unset var' => @$unset_var,
101 var_dump( intval($var, $value) );
190 --undefined var--
193 --unset var--
H A Dvar_export_error3.phpt5 /* Prototype : mixed var_export(mixed var [, bool return])
7 * Source code: ext/standard/var.c
H A Dgetservbyname_variation11.phpt20 foreach ( $variation_array as $var ) {
21 var_dump(getservbyname( $service, $var ) );
H A Dgetservbyname_variation4.phpt21 foreach ( $variation_array as $var ) {
22 var_dump(getservbyname( $var , $protocol ) );
H A Dgetservbyname_variation2.phpt20 foreach ( $variation_array as $var ) {
21 var_dump(getservbyname( $var , $protocol ) );
H A Dvar_export_error2.phpt5 /* Prototype : mixed var_export(mixed var [, bool return])
7 * Source code: ext/standard/var.c
H A Dinclude_path.phpt9 var_dump(get_include_path("var"));
17 var_dump(set_include_path("var"));
58 string(3) "var"
/PHP-5.6/tests/strings/
H A D004.phpt11 $var = highlight_string("<br /><?php echo \"foo\"; ?><br />");
12 $var = highlight_string("<br /><?php echo \"bar\"; ?><br />", TRUE);
13 echo "\n[$var]\n";
/PHP-5.6/ext/wddx/tests/
H A Dbug52468.phpt12 …er><comment>my_command</comment></header><data><struct><var name='handle'><number></number></var><…
H A Dbug72750.phpt19 <var name='aBinary'>
21 </var>
H A Dbug68996.phpt15 <wddxPacket version='1.0'><header/><data><struct><var name=''><string>foo</string></var></struct></…
H A Dbug72749.phpt18 <var name='aDateTime3'>
20 </var>
H A Dbug73331.phpt8 …wddxPacket version='1.0'><header/><data><struct><var name='php_class_name'><string>PDORow</string>…
/PHP-5.6/ext/session/tests/
H A Dsession_encode_serialize.phpt13 $_SESSION['var'] = 123;
22 string(51) "a:3:{i:-3;s:3:"foo";i:3;s:3:"bar";s:3:"var";i:123;}"
H A Dbug26862.phpt12 output_add_rewrite_var('var', 'value');
22 <a href="file.php?var=value">link</a><a href="file.php">link</a>
/PHP-5.6/ext/standard/tests/file/
H A Dfile_get_contents_basic001.phpt12 $var = file_get_contents($temp_filename);
13 echo $var;
/PHP-5.6/sapi/cgi/
H A Dfastcgi.c157 char *var; member
266 memcmp(p->var, var, var_len) == 0) { in fcgi_hash_set()
289 p->var = fcgi_hash_strndup(h, var, var_len); in fcgi_hash_set()
303 memcmp((*p)->var, var, var_len) == 0) { in fcgi_hash_del()
322 memcmp(p->var, var, var_len) == 0) { in fcgi_hash_get()
1024 memcpy(p, q->var, q->var_len); in fcgi_read_request()
1474 return fcgi_hash_get(&req->env, FCGI_HASH_FUNC(var, var_len), (char*)var, var_len, &val_len);
1488 fcgi_hash_del(&req->env, FCGI_HASH_FUNC(var, var_len), var, var_len);
1534 zval ** var = (zval **)ptr; local
1535 pefree(Z_STRVAL_PP(var), 1);
[all …]
/PHP-5.6/ext/standard/tests/array/
H A Dcount_variation1.phpt2 Test count() function : usage variations - Pass different data types as $var arg
5 /* Prototype : int count(mixed $var [, int $mode])
11 * aPass different data types as $var argument to count() to test behaviour
36 // unexpected values to be passed to $var argument

Completed in 63 milliseconds

12345678910>>...36