mirror of
https://github.com/php-win-ext/phpy.git
synced 2026-03-24 17:02:15 +01:00
13 lines
243 B
Python
13 lines
243 B
Python
import phpy
|
|
import math
|
|
|
|
phpy.include("./tests/lib/PhpyObject.php")
|
|
phpy.include("./tests/lib/TestClass.php")
|
|
|
|
|
|
print(phpy.call('memory_get_usage'))
|
|
for i in range(32):
|
|
items = phpy.globals('_SERVER')
|
|
|
|
print(phpy.call('memory_get_usage'))
|