mirror of
https://github.com/php/php-src.git
synced 2025-08-18 23:18:56 +02:00
18 lines
272 B
PHP
18 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;
|
|
?>
|