Linux vps-61133.fhnet.fr 4.9.0-19-amd64 #1 SMP Debian 4.9.320-2 (2022-06-30) x86_64
Apache/2.4.25 (Debian)
Server IP : 93.113.207.21 & Your IP : 216.73.216.112
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
src /
php-7.4.33 /
ext /
odbc /
tests /
Delete
Unzip
Name
Size
Permission
Date
Action
CONFLICTS
5
B
-rw-rw-r--
2022-10-31 11:36
bug44618.phpt
1.61
KB
-rw-rw-r--
2022-10-31 11:36
bug46050.phpt
532
B
-rw-rw-r--
2022-10-31 11:36
bug47803.phpt
3.26
KB
-rw-rw-r--
2022-10-31 11:36
bug60616.phpt
1.97
KB
-rw-rw-r--
2022-10-31 11:36
bug68087.phpt
1.22
KB
-rw-rw-r--
2022-10-31 11:36
bug69354.phpt
845
B
-rw-rw-r--
2022-10-31 11:36
bug69975.phpt
726
B
-rw-rw-r--
2022-10-31 11:36
bug71171.phpt
838
B
-rw-rw-r--
2022-10-31 11:36
bug73448.phpt
1.14
KB
-rw-rw-r--
2022-10-31 11:36
bug73725.phpt
947
B
-rw-rw-r--
2022-10-31 11:36
bug78470.phpt
342
B
-rw-rw-r--
2022-10-31 11:36
bug78473.phpt
343
B
-rw-rw-r--
2022-10-31 11:36
bug80147.phpt
677
B
-rw-rw-r--
2022-10-31 11:36
bug80152.phpt
598
B
-rw-rw-r--
2022-10-31 11:36
config.inc
292
B
-rw-rw-r--
2022-10-31 11:36
odbc_columnprivileges_001.phpt
651
B
-rw-rw-r--
2022-10-31 11:36
odbc_columns_001.phpt
615
B
-rw-rw-r--
2022-10-31 11:36
odbc_data_source_001.phpt
621
B
-rw-rw-r--
2022-10-31 11:36
odbc_exec_001.phpt
950
B
-rw-rw-r--
2022-10-31 11:36
odbc_exec_002.phpt
678
B
-rw-rw-r--
2022-10-31 11:36
odbc_free_result_001.phpt
1.25
KB
-rw-rw-r--
2022-10-31 11:36
odbc_tables_001.phpt
612
B
-rw-rw-r--
2022-10-31 11:36
skipif.inc
192
B
-rw-rw-r--
2022-10-31 11:36
Save
Rename
--TEST-- odbc_exec(): Getting accurate unicode data from query --SKIPIF-- <?php include 'skipif.inc'; ?> <?php if ("unixODBC" != ODBC_TYPE) { die("skip ODBC_TYPE != unixODBC"); } ?> --FILE-- <?php // Test strings mb_internal_encoding("EUC_JP"); $euc_jp_base64 = 'pdal6aWkpcCl676uyqo='; $euc_jp = base64_decode($euc_jp_base64); $ascii = 'abcdefghijklmnopqrstuvwxyz;]=#0123456789'; include 'config.inc'; ini_set("odbc.defaultlrl", 4); // Set artificially low $conn = odbc_connect($dsn, $user, $pass); odbc_exec($conn, 'CREATE DATABASE odbcTEST ENCODING=\'EUC_JP\''); odbc_exec($conn, 'CREATE TABLE FOO (ID INT, CHAR_COL CHAR(200), VARCHAR_COL VARCHAR(200), TEXT_COL TEXT)'); odbc_exec($conn, "INSERT INTO FOO(ID, CHAR_COL, VARCHAR_COL, TEXT_COL) VALUES (1, '$euc_jp', '$euc_jp', '$euc_jp')"); odbc_exec($conn, "INSERT INTO FOO(ID, CHAR_COL, VARCHAR_COL, TEXT_COL) VALUES (2, '$ascii', '$ascii', '$ascii')"); $res = odbc_exec($conn, 'SELECT * FROM FOO ORDER BY ID ASC'); while(odbc_fetch_row($res)) { $char_col = odbc_result($res, "CHAR_COL"); $varchar_col = odbc_result($res, "VARCHAR_COL"); $id = odbc_result($res, "ID"); $text_col = ""; while (($chunk=odbc_result($res, "TEXT_COL")) !== false) { $text_col .= $chunk; } if ($id == 1) { $euc_jp_check = $euc_jp . str_repeat(" ", (200 - mb_strlen($euc_jp))); if (strcmp($char_col, $euc_jp_check) == 0 && strcmp($varchar_col, $euc_jp) == 0 && strcmp($text_col, $euc_jp) == 0) { print "EUC-JP matched\n"; } else { print "EUC-JP mismatched\n"; } } else { $ascii_check = $ascii . str_repeat(" ", (200 - strlen($ascii))); if (strcmp($char_col, $ascii_check) == 0 && strcmp($varchar_col, $ascii) == 0 && strcmp($text_col, $ascii) == 0) { print "ASCII matched\n"; } else { print "ASCII mismatched\n"; } } } ?> --EXPECT-- EUC-JP matched ASCII matched --CLEAN-- <?php include 'config.inc'; $conn = odbc_connect($dsn, $user, $pass); odbc_exec($conn, 'DROP TABLE FOO'); odbc_exec($conn, 'DROP DATABASE odbcTEST'); ?>