📁 File Manager Pro
v10.0.3 | PHP: 8.2.31
Server: LiteSpeed
2026-07-03 12:22:31
📂
/ (Root)
/
opt
/
alt
/
tests
/
alt-php85-pecl-gearman_2.2.1-1.el8
/
tests
📍 /opt/alt/tests/alt-php85-pecl-gearman_2.2.1-1.el8/tests
🔄 Refresh
✏️
Editing: gearman_client_005.phpt
Read Only
--TEST-- GearmanClient::options(), gearman_client_options() --SKIPIF-- <?php if (!extension_loaded("gearman")) print "skip"; ?> --FILE-- <?php $client = new GearmanClient(); $client->setOptions(32); print "GearmanClient::options (OO): " . $client->options() . PHP_EOL; $client2 = gearman_client_create(); gearman_client_set_options($client2, 32); print "gearman_client_options (Procedural): " . gearman_client_options($client2) . PHP_EOL; print "OK"; ?> --EXPECT-- GearmanClient::options (OO): 32 gearman_client_options (Procedural): 32 OK
💾 Save Changes
❌ Cancel