Hi! Could we please enable some services and cookies to improve your experience and our website?

PHPize Online / SQLize Online  /  SQLtest Online

A A A
Login    Share code      Blog   FAQ

Online Sandbox for SQL and PHP: Write, Run, Test, and Share SQL Queries and PHP Code

Copy Format Clear

Stuck with a problem? Got Error? Ask AI support!

Copy Clear
Copy Format Clear
<?php function showMem($label) { echo "$label: " . round(memory_get_usage() / 1024, 2) . " KB\n"; } showMem('Start'); $a = str_repeat('x', 1024 * 1024); // 1 MB string showMem('After creating $a'); $b = $a; $c = $a; $d = $a; showMem('After assigning $b = $a'); $b[0] = 'y'; // triggers COW because string is immutable showMem('After modifying $b[0]');
Copy Clear