1
0
mirror of https://github.com/php/php-src.git synced 2026-03-29 03:32:20 +02:00
Files
archived-php-src/ext/rpc/tests/test4.php
2002-06-10 21:15:38 +00:00

19 lines
272 B
PHP

<?php
echo "pooling test\n";
/* pooling test */
$rpc = new com("pooling", true, 1);
com_poolable($rpc);
delete $rpc;
$rpc = new com("pooling", true, 1);
delete $rpc;
$rpc = new com("pooling", true, 1);
delete $rpc;
$rpc = new com("pooling", true, 1);
delete $rpc;
?>