/PHP-5.5/ext/mysqli/tests/ |
H A D | mysqli_stmt_bind_param_type_juggling.phpt | 32 if (!mysqli_stmt_prepare($stmt, "INSERT INTO test(col1, col2) VALUES (?, ?)")) { 57 if (!$res = mysqli_query($link, "SELECT col1, col2 FROM test")) { 67 if (($row['col1'] != $bind_value1) || ($row['col2'] != $bind_value1)) { 68 printf("[%03d + 11] Expecting col1 = %s, col2 = %s got col1 = %s, col2 = %s - [%d] %s\n", 70 $row['col1'], $row['col2'], 76 if (($row['col1'] != $bind_value1) || ($row['col2'] != $bind_value2)) { 77 printf("[%03d + 12] Expecting col1 = %s, col2 = %s got col1 = %s, col2 = %s - [%d] %s\n", 79 $row['col1'], $row['col2'], 101 1) col1 INT, col2 CHAR(1) 107 col1 INT, col2 INT [all …]
|
H A D | bug32405.phpt | 24 $stmt->bind_result($col1, $col2); 26 var_dump($col1, $col2);
|
H A D | 048.phpt | 18 $mysql->query("CREATE TABLE test_fetch_null(col1 tinyint, col2 smallint, 28 …$stmt = $mysql->prepare("SELECT col1, col2, col3, col4, col5, col6, col7, col8, col9, col10, col11…
|
H A D | 002.phpt | 19 $rc = mysqli_query($link,"CREATE TABLE test_fetch_null(col1 tinyint, col2 smallint, 34 …$stmt = mysqli_prepare($link, "SELECT col1, col2, col3, col4, col5, col6, col7, col8, col9, col10,…
|
H A D | 019.phpt | 18 $rc = mysqli_query($link,"CREATE TABLE insert_read(col1 tinyint, col2 smallint, 41 …if (!$stmt = mysqli_prepare($link, "SELECT col1, col2, col3, col4, col5, col6, col7, col8, col9, c…
|
H A D | mysqli_fetch_field_flags.phpt | 204 $column_def = array('col1 CHAR(1)', 'col2 CHAR(2)','INDEX idx_col1_col2(col1, col2)'); 205 $expected_flags = array('col1' => 'MULTIPLE_KEY PART_KEY', 'col2' => 'PART_KEY');
|
/PHP-5.5/ext/oci8/tests/ |
H A D | fetch_object_1.phpt | 18 "insert into fetch_object_tab values (123, '1st row col2 string', '1 more text')", 19 "insert into fetch_object_tab values (456, '2nd row col2 string', '2 more text')", 20 "insert into fetch_object_tab values (789, '3rd row col2 string', '3 more text')", 88 string(19) "1st row col2 string" 96 string(19) "2nd row col2 string" 104 string(19) "3rd row col2 string" 110 1st row col2 string 113 2nd row col2 string 116 3rd row col2 string
|
H A D | fetch_object.phpt | 18 "insert into fetch_object_tab values (123, '1st row col2 string', '1 more text')", 19 "insert into fetch_object_tab values (456, '2nd row col2 string', '2 more text')", 20 "insert into fetch_object_tab values (789, '3rd row col2 string', '3 more text')", 88 %unicode|string%(19) "1st row col2 string" 96 %unicode|string%(19) "2nd row col2 string" 104 %unicode|string%(19) "3rd row col2 string" 110 1st row col2 string 113 2nd row col2 string 116 3rd row col2 string
|
H A D | fetch_object_2.phpt | 17 "create table fetch_object_2_tab (col1 number, col2 CLOB, col3 varchar2(15))", 18 "insert into fetch_object_2_tab values (123, '1st row col2 string', '1 more text')", 19 "insert into fetch_object_2_tab values (456, '2nd row col2 string', NULL)", 20 "insert into fetch_object_2_tab values (789, '3rd row col2 string', '3 more text')", 105 1st row col2 string 108 2nd row col2 string 111 3rd row col2 string
|
H A D | bug42496_1.phpt | 33 oci_define_by_name($s, "C2", $col2);
|
H A D | bug36403.phpt | 19 "create table bug36403_tab (c1 number, col2 number, column3 number, col4 number)"
|
/PHP-5.5/ext/mysql/tests/ |
H A D | 002.phpt | 20 var_dump(mysql_query('CREATE TABLE test(col1 int PRIMARY KEY, col2 varchar(50), col3 char(5))')); 22 var_dump(mysql_query("INSERT INTO test(col1, col2, col3) VALUES(1, 'foo', 'bar'),(2, 'foo', 'bar')"… 24 var_dump($res = mysql_query('SELECT col1, col2, col3 FROM test ORDER BY col1 ASC')); 49 [%u|b%"col2"]=> 57 [%u|b%"col2"]=>
|
/PHP-5.5/ext/gd/libgd/ |
H A D | gd_crop.c | 28 static int gdColorMatch(gdImagePtr im, int col1, int col2, float threshold); 344 static int gdColorMatch(gdImagePtr im, int col1, int col2, float threshold) in gdColorMatch() argument 346 const int dr = gdImageRed(im, col1) - gdImageRed(im, col2); in gdColorMatch() 347 const int dg = gdImageGreen(im, col1) - gdImageGreen(im, col2); in gdColorMatch() 348 const int db = gdImageBlue(im, col1) - gdImageBlue(im, col2); in gdColorMatch() 349 const int da = gdImageAlpha(im, col1) - gdImageAlpha(im, col2); in gdColorMatch() 363 static int colors_equal (const int col1, const in col2)
|
/PHP-5.5/ext/gd/tests/ |
H A D | imagepolygon_basic.phpt | 44 $col2 = imagecolorat($image, 100, 100); 46 $color2 = imagecolorsforindex($image, $col2);
|
H A D | imagedashedline_basic.phpt | 42 $col2 = imagecolorat($image, 5, 5); 45 $color2 = imagecolorsforindex($image, $col2);
|
H A D | imagefilledpolygon_basic.phpt | 51 $col2 = imagecolorat($image_in, 15, 15); 56 $color2 = imagecolorsforindex($image_in, $col2);
|
/PHP-5.5/ext/pdo/tests/ |
H A D | pdo_016.phpt | 73 $stmt4->bindColumn('idx', $col2); 77 var_dump(array($col2=>$col1));
|
H A D | pdo_016a.phpt | 73 $stmt4->bindColumn('idx', $col2); 77 var_dump(array($col2=>$col1));
|