Home
last modified time | relevance | path

Searched refs:value1 (Results 1 – 25 of 62) sorted by relevance

123

/PHP-5.3/ext/standard/tests/file/
H A Dparse_ini_file_variation2.phpt17 value1=on
20 value1=true
23 value1=yes
26 value1=null
30 value1="on"
33 value1="true"
36 value1="yes"
39 value1="null"
56 ["value1"]=>
63 ["value1"]=>
[all …]
H A Dparse_ini_file_variation1.phpt17 value1=original
20 value1=original
28 $a['section1']['value1'] = 'changed';
39 ["value1"]=>
46 ["value1"]=>
55 ["value1"]=>
62 ["value1"]=>
/PHP-5.3/ext/standard/tests/array/
H A Duasort_variation10.phpt15 /* Prototype : int cmp_function(mixed $value1, mixed $value2)
16 * Parameters : $value1 and $value2 - values to be compared
18 * 1 - if value1 is greater than value2
19 * -1 - if value1 is less than value2
20 * Description : compares value1 and value2
22 function cmp_function($value1, $value2)
24 if($value1 == $value2) {
27 else if($value1 > $value2) {
38 $value1 = -5;
41 $value4 = &$value1;
H A Duasort_variation6.phpt15 /* Prototype : int cmp_function(mixed $value1, mixed $value2)
16 * Parameters : $value1 and $value2 - values to be compared
18 * 1 - if value1 is greater than value2
19 * -1 - if value1 is less than value2
20 * Description : compares value1 and value2
22 function cmp_function($value1, $value2)
24 if($value1 == $value2) {
27 else if($value1 > $value2) {
H A Duasort_variation9.phpt16 /* Prototype : int cmp(mixed &$value1, mixed &$value2)
17 * Parameters : $value1 and $value2 - values recieved by reference
19 * 1 - if value1 is greater than value2
20 * -1 - if value1 is less than value2
21 * Description : compares value1 and value2
23 function cmp(&$value1, &$value2)
25 if($value1 == $value2) {
28 else if($value1 > $value2) {
H A Duasort_object1.phpt18 /* Prototype : int cmp(mixed $value1, mixed $value2)
19 * Parameters : $value1 and $value2 - values to be compared
21 * 1 - if value1 is greater than value2
22 * -1 - if value1 is less than value3
23 * Description : compares value1 and value2
25 function simple_cmp($value1, $value2)
27 if($value1 == $value2) {
30 else if($value1 > $value2) {
38 function multiple_cmp($value1, $value2)
40 if($value1->getValue() == $value2->getValue())
[all …]
H A Duasort_variation11.phpt17 /* Prototype : int cmp(mixed $value1, mixed $value2)
18 * Parameters : $value1 and $value2 - values to be compared
20 * 1 - if value1 is greater than value2
21 * -1 - if value1 is less than value2
22 * Description : compares value1 and value2
24 function cmp($value1, $value2)
26 if($value1 == $value2) {
29 else if($value1 > $value2) {
H A Duasort_basic2.phpt13 /* Prototype : int cmp(mixed $value1, mixed $value2)
14 * Parameters : $value1 and $value2 - values to be compared
16 * 1 - if value1 is greater than value2
17 * -1 - if value1 is less than value2
18 * Description : compares value1 and value2
20 function cmp($value1, $value2)
22 if($value1 == $value2) {
25 else if($value1 > $value2) {
H A Dnatcasesort_variation6.phpt16 $value1 = 100;
21 $array = array( &$value1 , &$value2, &$value3);
25 echo "\n-- Change \$value1 --\n";
26 $value1 = -29;
46 -- Change $value1 --
H A Duasort_basic1.phpt13 /* Prototype : int cmp(mixed $value1, mixed $value2)
14 * Parameters : $value1 and $value2 - values to be compared
16 * 1 - if value1 is greater than value2
17 * -1 - if value1 is less than value2
18 * Description : compares value1 and value2
20 function cmp($value1, $value2)
22 if($value1 == $value2) {
25 else if($value1 > $value2) {
H A Duasort_variation3.phpt17 /* Prototype : int cmp_function(mixed $value1, mixed $value2)
18 * Parameters : $value1 and $value2 - values to be compared
20 * 1 - if value1 is greater than value2
21 * -1 - if value1 is less than value2
22 * Description : compares value1 and value2
24 function cmp_function($value1, $value2)
26 if($value1 == $value2) {
29 else if($value1 > $value2) {
H A Dusort_variation9.phpt16 function cmp_function($value1, $value2)
18 if($value1 == $value2) {
21 else if($value1 > $value2) {
30 $value1 = -5;
33 $value4 = &$value1;
H A Duasort_variation4.phpt16 /* Prototype : int cmp_function(mixed $value1, mixed $value2)
17 * Parameters : $value1 and $value2 - values to be compared
19 * 1 - if value1 is greater than value2
20 * -1 - if value1 is less than value2
21 * Description : compares value1 and value2
23 function cmp_function($value1, $value2)
25 if($value1 == $value2) {
28 else if($value1 > $value2) {
H A Duasort_variation5.phpt16 /* Prototype : int cmp_function(mixed $value1, mixed $value2)
17 * Parameters : $value1 and $value2 - values to be compared
19 * 1 - if value1 is greater than value2
20 * -1 - if value1 is less than value2
21 * Description : compares value1 and value2
23 function cmp_function($value1, $value2)
25 if($value1 == $value2) {
28 else if($value1 > $value2) {
H A Duasort_error.phpt13 /* Prototype : int cmp(mixed $value1, mixed $value2)
14 * Parameters : $value1 and $value2 - values to be compared
16 * 1 - if value1 is greater than value2
17 * -1 - if value1 is less than value2
18 * Description : compares value1 and value2
20 function cmp($value1, $value2)
22 if($value1 == $value2) {
25 else if($value1 > $value2) {
H A Darray_fill_object.phpt34 function __construct($value1 , $value2)
36 $this->member1 = $value1;
46 function __construct($value1 , $value2 , $value3)
48 parent::__construct($value1 , $value2);
62 function __construct($value1 , $value2)
64 $this->member1 = $value1;
76 parent::__construct($value1 , $value2);
90 function __construct($value1 , $value2)
92 $this->member1 = $value1;
104 parent::__construct($value1 , $value2);
[all …]
H A Duasort_object2.phpt22 /* Prototype : int cmp_function(mixed $value1, mixed $value2)
23 * Parameters : $value1 and $value2 - values to be compared
25 * 1 - if value1 is greater than value2
26 * -1 - if value1 is less than value2
27 * Description : compares value1 and value2
29 function cmp_function($value1, $value2)
31 if($value1 == $value2) {
34 else if($value1 > $value2) {
H A Dusort_variation7.phpt16 $cmp_function = 'if($value1 == $value2) {return 0;} else if($value1 > $value2) {return 1;} else{ret…
21 var_dump( usort($array_arg, create_function('$value1, $value2',$cmp_function) ) );
27 var_dump( usort($array_arg, create_function('&$value1, &$value2', $cmp_function) ) );
H A Dusort_object1.phpt17 function simple_cmp($value1, $value2)
19 if($value1 == $value2) {
22 else if($value1 > $value2) {
30 function multiple_cmp($value1, $value2)
32 if($value1->getValue() == $value2->getValue())
34 else if($value1->getValue() > $value2->getValue())
H A Duasort_variation7.phpt18 $cmp_function = 'if($value1 == $value2) {return 0;} else if($value1 > $value2) {return 1;} else{ret…
22 var_dump( uasort($array_arg, create_function('$value1, $value2',$cmp_function) ) );
27 var_dump( uasort($array_arg, create_function('&$value1, &$value2', $cmp_function) ) );
/PHP-5.3/ext/mysqlnd/
H A Dmysqlnd_statistics.h96 #define MYSQLND_INC_STATISTIC_W_VALUE2(enabler, stats, statistic1, value1, statistic2, value2) \ argument
100 uint64_t v1 = (uint64_t) (value1); \
109 #define MYSQLND_INC_STATISTIC_W_VALUE3(enabler, stats, statistic1, value1, statistic2, value2, stat… argument
113 uint64_t v1 = (uint64_t) (value1); \
135 #define MYSQLND_INC_GLOBAL_STATISTIC_W_VALUE2(statistic1, value1, statistic2, value2) \ argument
146 #define MYSQLND_INC_CONN_STATISTIC_W_VALUE2(conn_stats, statistic1, value1, statistic2, value2) \ argument
148 …MYSQLND_INC_STATISTIC_W_VALUE2(MYSQLND_G(collect_statistics), (conn_stats), (statistic1), (value1)…
150 #define MYSQLND_INC_CONN_STATISTIC_W_VALUE3(conn_stats, statistic1, value1, statistic2, value2, sta… argument
158 #define MYSQLND_INC_GLOBAL_STATISTIC_W_VALUE2(statistic1, value1, statistic2, value2) argument
161 #define MYSQLND_INC_CONN_STATISTIC_W_VALUE2(conn_stats, statistic1, value1, statistic2, value2) argument
[all …]
/PHP-5.3/ext/standard/tests/general_functions/
H A Ddebug_zval_dump_o.phpt24 var $value1 = 1;
120 ["value1"]=>
137 ["value1"]=>
169 ["value1"]=>
207 ["value1"]=>
245 ["value1"]=>
491 ["value1"]=>
529 ["value1"]=>
572 ["value1"]=>
610 ["value1"]=>
[all …]
/PHP-5.3/ext/spl/tests/
H A DarrayObject_uasort_basic1.phpt15 function cmp($value1, $value2) {
16 if($value1 == $value2) {
19 else if($value1 < $value2) {
H A DarrayObject_uksort_basic1.phpt14 function cmp($value1, $value2) {
15 if($value1 == $value2) {
18 else if($value1 < $value2) {
/PHP-5.3/ext/pcre/tests/
H A Dpreg_split_basic.phpt9 $string = 'this is a_list: value1, Test__, string; Hello, world!_(parentheses)';
22 string(7) " value1"
42 string(54) "this is a_list: value1, Test__, string; Hello, world!_"
52 string(67) "this is a_list: value1, Test__, string; Hello, world!_(parentheses)"

Completed in 51 milliseconds

123