mirror of
https://github.com/php/php-src.git
synced 2024-11-25 19:05:31 +08:00
19 lines
272 B
PHP
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;
|
|
?>
|