Linux premium71.web-hosting.com 4.18.0-513.11.1.lve.el8.x86_64 #1 SMP Thu Jan 18 16:21:02 UTC 2024 x86_64
LiteSpeed
Server IP : 198.187.29.8 & Your IP : 3.15.0.151
Domains :
Cant Read [ /etc/named.conf ]
User : cleahvkv
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
opt /
alt /
tests /
alt-php80-phpiredis_1.0.1-1.el8 /
Delete
Unzip
Name
Size
Permission
Date
Action
client_001.phpt
283
B
-rw-r--r--
2023-05-18 13:38
client_002.phpt
321
B
-rw-r--r--
2023-05-18 13:38
client_003.phpt
510
B
-rw-r--r--
2023-05-18 13:38
client_004.phpt
389
B
-rw-r--r--
2023-05-18 13:38
client_005.phpt
378
B
-rw-r--r--
2023-05-18 13:38
client_006.phpt
534
B
-rw-r--r--
2023-05-18 13:38
client_007.phpt
445
B
-rw-r--r--
2023-05-18 13:38
client_008.phpt
651
B
-rw-r--r--
2023-05-18 13:38
client_009.phpt
425
B
-rw-r--r--
2023-05-18 13:38
client_010.phpt
469
B
-rw-r--r--
2023-05-18 13:38
client_011.phpt
466
B
-rw-r--r--
2023-05-18 13:38
reader_001.phpt
257
B
-rw-r--r--
2023-05-18 13:38
reader_002.phpt
1.07
KB
-rw-r--r--
2023-05-18 13:38
reader_003.phpt
1.17
KB
-rw-r--r--
2023-05-18 13:38
reader_004.phpt
540
B
-rw-r--r--
2023-05-18 13:38
reader_005.phpt
824
B
-rw-r--r--
2023-05-18 13:38
reader_006.phpt
1.44
KB
-rw-r--r--
2023-05-18 13:38
reader_007.phpt
951
B
-rw-r--r--
2023-05-18 13:38
reader_008.phpt
860
B
-rw-r--r--
2023-05-18 13:38
reader_009.phpt
538
B
-rw-r--r--
2023-05-18 13:38
reader_010.phpt
446
B
-rw-r--r--
2023-05-18 13:38
reader_011.phpt
571
B
-rw-r--r--
2023-05-18 13:38
reader_012.phpt
371
B
-rw-r--r--
2023-05-18 13:38
reader_013.phpt
699
B
-rw-r--r--
2023-05-18 13:38
serializer_001.phpt
240
B
-rw-r--r--
2023-05-18 13:38
serializer_002.phpt
353
B
-rw-r--r--
2023-05-18 13:38
testsuite_configuration.inc
118
B
-rw-r--r--
2023-05-18 13:38
testsuite_skipif.inc
146
B
-rw-r--r--
2023-05-18 13:38
testsuite_utilities.inc
645
B
-rw-r--r--
2023-05-18 13:38
utils_001.phpt
682
B
-rw-r--r--
2023-05-18 13:38
Save
Rename
--TEST-- [READER] Response types --SKIPIF-- <?php require_once 'testsuite_skipif.inc'; --FILE-- <?php $type = -1; $reader = phpiredis_reader_create(); phpiredis_reader_feed($reader, "+OK\r\n"); $reply = phpiredis_reader_get_reply($reader, $type); if ($reply != 'OK') { echo "Value of reply '$reply' is not 'OK'\n"; } if ($type != PHPIREDIS_REPLY_STATUS) { echo "Value of type '$type' != PHPIREDIS_REPLY_STATUS(".PHPIREDIS_REPLY_STATUS.")\n"; } $reader = phpiredis_reader_create(); phpiredis_reader_feed($reader, "-ERR\r\n"); $reply = phpiredis_reader_get_reply($reader, $type); if ($reply != 'ERR') { echo "Value of reply '$reply' is not 'ERR'\n"; } if ($type != PHPIREDIS_REPLY_ERROR) { echo "Value of type '$type' != PHPIREDIS_REPLY_ERROR(".PHPIREDIS_REPLY_ERROR.")\n"; } echo "OK\n"; --EXPECT-- OK