/PHP-7.0/ext/pdo_oci/tests/ |
H A D | bug57702.phpt | 22 $query = "create table bug57702 (id number, data1 blob, data2 blob)"; 26 function do_insert($db, $id, $data1, $data2) 29 … $db->prepare("insert into bug57702 (id, data1, data2) values (:id, empty_blob(), empty_blob()) re… 37 fwrite($blob1, $data1); 52 $stmt = $db->prepare('select data1, data2 from bug57702 order by id'); 55 var_dump($row['data1']); 58 var_dump($row['data1']); 65 foreach($db->query("select data1 as d1, data2 as d2 from bug57702 order by id") as $row) { 74 $stmt = $db->prepare('select data1 as d3_1, data2 as d3_2 from bug57702 order by id'); 91 foreach($db->query("select data1 as d4_1, data2 as d4_2 from bug57702 order by id") as $row) { [all …]
|
H A D | pdo_oci_stream_2a.phpt | 21 $query = "create table pdo_oci_stream_2 (id number, data1 blob, data2 blob)"; 25 function do_insert($db, $id, $data1, $data2) 28 …epare("insert into pdo_oci_stream_2 (id, data1, data2) values (:id, empty_blob(), empty_blob()) re… 36 fwrite($blob1, $data1);
|
H A D | pdo_oci_stream_2b.phpt | 27 foreach($db->query("select data1 as d4_1, data2 as d4_2 from pdo_oci_stream_2 order by id") as $row…
|
/PHP-7.0/ext/reflection/tests/ |
H A D | bug49074.phpt | 6 private static $data1 = 1; 18 $m['data1'] = 100;
|
/PHP-7.0/ext/spl/tests/ |
H A D | bug34548.phpt | 19 $data1=array('one', 'two', 'three'); 22 $foo=new Collection($data1);
|
/PHP-7.0/ext/standard/tests/streams/ |
H A D | proc_open_bug51800_right2.phpt | 25 $data1 = str_repeat("b", $how_much); 29 while ($i0 < strlen($data0) && $i1 < strlen($data1)) { 31 fwrite(STDERR, substr($data1, $i1, $step));
|
H A D | proc_open_bug51800_right.phpt | 26 $data1 = str_repeat("b", $how_much); 28 fwrite(STDERR, $data1);
|
H A D | proc_open_bug51800.phpt | 42 $data1 = str_repeat("b", $how_much); 44 fwrite(STDERR, $data1);
|
/PHP-7.0/ext/standard/tests/file/ |
H A D | include_streams.phpt | 5 $data1 = $data2 = $data3 = $data4 = $data5 = $data6 = <<<'EOD' 105 echo file_get_contents("test://GLOBALS/data1"); 106 include("test://GLOBALS/data1"); 123 test://GLOBALS/data1
|
/PHP-7.0/ext/standard/tests/strings/ |
H A D | get_meta_tags.phpt | 16 $data1 = <<<DATA 47 $array = array($data, $data1, $data2, $data3, $data4, "", "<>", "<meta<<<<<");
|
/PHP-7.0/ext/zlib/tests/ |
H A D | 005.phpt | 19 var_dump($data1 = gzcompress($string)); 29 var_dump(gzuncompress($data1));
|
H A D | 006.phpt | 19 var_dump($data1 = gzdeflate($string)); 30 var_dump(gzinflate($data1));
|
/PHP-7.0/ext/mcrypt/tests/ |
H A D | mcrypt_decrypt_3des_ecb.phpt | 31 $data1 = array( 52 special_var_dump(mcrypt_decrypt($cipher, $keys[$i], base64_decode($data1[$i]), $mode));
|
H A D | mcrypt_ecb_3des_decrypt.phpt | 29 $data1 = array( 51 …special_var_dump(mcrypt_decrypt($cipher, $keys[$i], base64_decode($data1[$i]), MCRYPT_MODE_ECB, $i…
|
H A D | mcrypt_cbc_3des_decrypt.phpt | 27 $data1 = array( 50 …special_var_dump(mcrypt_decrypt($cipher, $keys[$i], base64_decode($data1[$i]), MCRYPT_MODE_CBC, $i…
|
H A D | mcrypt_decrypt_3des_cbc.phpt | 31 $data1 = array( 53 special_var_dump(mcrypt_decrypt($cipher, $keys[$i], base64_decode($data1[$i]), $mode, $iv));
|
/PHP-7.0/ext/oci8/tests/ |
H A D | bug42841.phpt | 58 $data1[] = $row; 63 var_dump($data1);
|
/PHP-7.0/ext/mbstring/oniguruma/ |
H A D | regparse.c | 1831 OnigCodePoint i, n1, *data1; in or_code_range_buf() local 1863 GET_CODE_POINT(n1, data1); in or_code_range_buf() 1864 data1++; in or_code_range_buf() 1875 from = data1[i*2]; in or_code_range_buf() 1876 to = data1[i*2+1]; in or_code_range_buf() 1947 GET_CODE_POINT(n1, data1); in and_code_range_buf() 1949 data1++; in and_code_range_buf() 1954 from1 = data1[i*2]; in and_code_range_buf() 1955 to1 = data1[i*2+1]; in and_code_range_buf() 1970 from1 = data1[i*2]; in and_code_range_buf() [all …]
|