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

PHPize | SQLize | SQLtest

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

A A A
Login    Share code      Blog   FAQ
Copy Format Clear

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

Copy Clear
Copy Format Clear
<?php $array = [ ['id' => '5', 'class' => 'A'], ['id' => '53', 'class' => 'B'], ['id' => '2', 'class' => 'C'], ]; foreach ($array as $key => $values) { $array[$key]['description'] = 'dadadadad'; if ($values['class'] === 'B') { $array = [$key => $array[$key]]; break; } } var_export($array);
Copy Clear