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 /
pdo_dblib /
tests /
Delete
Unzip
Name
Size
Permission
Date
Action
batch_stmt_ins_exec.phpt
1.45
KB
-rw-rw-r--
2022-10-31 11:36
batch_stmt_ins_sel_up_del.phpt
1.52
KB
-rw-rw-r--
2022-10-31 11:36
batch_stmt_ins_up.phpt
1.28
KB
-rw-rw-r--
2022-10-31 11:36
batch_stmt_rowcount.phpt
2.57
KB
-rw-rw-r--
2022-10-31 11:36
batch_stmt_transaction.phpt
2.04
KB
-rw-rw-r--
2022-10-31 11:36
batch_stmt_try.phpt
2.05
KB
-rw-rw-r--
2022-10-31 11:36
bug_38955.phpt
1.15
KB
-rw-rw-r--
2022-10-31 11:36
bug_45876.phpt
720
B
-rw-rw-r--
2022-10-31 11:36
bug_47588.phpt
1013
B
-rw-rw-r--
2022-10-31 11:36
bug_50755.phpt
545
B
-rw-rw-r--
2022-10-31 11:36
bug_54648.phpt
594
B
-rw-rw-r--
2022-10-31 11:36
bug_67130.phpt
674
B
-rw-rw-r--
2022-10-31 11:36
bug_68957.phpt
504
B
-rw-rw-r--
2022-10-31 11:36
bug_69592.phpt
1.13
KB
-rw-rw-r--
2022-10-31 11:36
bug_69757.phpt
683
B
-rw-rw-r--
2022-10-31 11:36
bug_71667.phpt
535
B
-rw-rw-r--
2022-10-31 11:36
bug_73396.phpt
533
B
-rw-rw-r--
2022-10-31 11:36
common.phpt
422
B
-rw-rw-r--
2022-10-31 11:36
config.inc
1.33
KB
-rw-rw-r--
2022-10-31 11:36
datetime2.phpt
928
B
-rw-rw-r--
2022-10-31 11:36
datetime_convert.phpt
818
B
-rw-rw-r--
2022-10-31 11:36
dbtds.phpt
397
B
-rw-rw-r--
2022-10-31 11:36
dbversion.phpt
356
B
-rw-rw-r--
2022-10-31 11:36
pdo_dblib_param_str_natl.phpt
578
B
-rw-rw-r--
2022-10-31 11:36
pdo_dblib_quote.phpt
1.43
KB
-rw-rw-r--
2022-10-31 11:36
stringify_uniqueidentifier.phpt
2.5
KB
-rw-rw-r--
2022-10-31 11:36
timeout.phpt
1.76
KB
-rw-rw-r--
2022-10-31 11:36
types.phpt
1.67
KB
-rw-rw-r--
2022-10-31 11:36
Save
Rename
--TEST-- PDO_DBLIB: Uniqueidentifier column data type stringifying --SKIPIF-- <?php if (!extension_loaded('pdo_dblib')) die('skip not loaded'); require __DIR__ . '/config.inc'; if (in_array($db->getAttribute(PDO::DBLIB_ATTR_TDS_VERSION), ['4.2', '4.6'])) die('skip feature unsupported by this TDS version'); ?> --FILE-- <?php require __DIR__ . '/config.inc'; $testGUID = '82A88958-672B-4C22-842F-216E2B88E72A'; $testGUIDBinary = base64_decode('WImogitnIkyELyFuK4jnKg=='); $sql = "SELECT CAST('$testGUID' as uniqueidentifier) as [guid]"; //-------------------------------------------------------------------------------- // 1. Get and Set the attribute //-------------------------------------------------------------------------------- $db->setAttribute(PDO::DBLIB_ATTR_STRINGIFY_UNIQUEIDENTIFIER, true); var_dump(true === $db->getAttribute(PDO::DBLIB_ATTR_STRINGIFY_UNIQUEIDENTIFIER)); $db->setAttribute(PDO::DBLIB_ATTR_STRINGIFY_UNIQUEIDENTIFIER, false); var_dump(false === $db->getAttribute(PDO::DBLIB_ATTR_STRINGIFY_UNIQUEIDENTIFIER)); //-------------------------------------------------------------------------------- // 2. Binary //-------------------------------------------------------------------------------- $stmt = $db->query($sql); $row = $stmt->fetch(PDO::FETCH_ASSOC); var_dump($row['guid'] === $testGUIDBinary); //-------------------------------------------------------------------------------- // 3. PDO::ATTR_STRINGIFY_FETCHES must not affect `uniqueidentifier` representation //-------------------------------------------------------------------------------- $db->setAttribute(PDO::ATTR_STRINGIFY_FETCHES, true); $stmt = $db->query($sql); $row = $stmt->fetch(PDO::FETCH_ASSOC); $db->setAttribute(PDO::ATTR_STRINGIFY_FETCHES, false); var_dump($row['guid'] === $testGUIDBinary); //-------------------------------------------------------------------------------- // 4. Stringifying // ! With TDS protocol version <7.0 binary will be returned and the test will fail ! // TODO: something from PDO::ATTR_SERVER_VERSION, PDO::ATTR_CLIENT_VERSION or PDO::ATTR_SERVER_INFO should be used // to get TDS version and skip this test in this case. //-------------------------------------------------------------------------------- $db->setAttribute(PDO::DBLIB_ATTR_STRINGIFY_UNIQUEIDENTIFIER, true); $stmt = $db->query($sql); $row = $stmt->fetch(PDO::FETCH_ASSOC); var_dump($row['guid'] === $testGUID); var_dump($row['guid']); ?> --EXPECT-- bool(true) bool(true) bool(true) bool(true) bool(true) string(36) "82A88958-672B-4C22-842F-216E2B88E72A"