/
opt
/
alt
/
tests
/
alt-php85-pecl-zmq_1.1.3-2.84f0720.el8
/
tests
/
New Directory
Upload File
HOME
--TEST-- Test throwing exception from callback --SKIPIF-- <?php require_once(dirname(__FILE__) . '/skipif.inc'); ?> --FILE-- <?php function this_throws($a, $b) { throw new Exception("Hello there"); } try { $socket = new ZMQSocket(new ZMQContext(), ZMQ::SOCKET_REQ, 'persistent_socket', 'this_throws'); echo "Fail\n"; } catch (Exception $e) { echo $e->getMessage() . "\n"; } --EXPECTF-- Hello there