Menu

[r957]: / trunk / php-java-bridge / tests.php5 / testOOM.php  Maximize  Restore  History

Download this file

11 lines (10 with data), 279 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
<?php
/**
* Test OutOfMemory behaviour
* PHP must not hang if an out of memory error occurs in either Java or PHP
*/
require_once("../server/META-INF/java/JavaBridge.inc");
$s = str_repeat("1", 3*8192*1024);
$str = new java("java.lang.String", $s);
echo $str->length()
?>