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 $array = [ [ 'name' => 'Иванова', 'class' => '4 A' ], [ 'name' => 'Иванов', 'class' => '4 A' ], [ 'name' => 'Ивановченко', 'class' => '4 A' ], [ 'name' => 'Петров', 'class' => '4 A' ], [ 'name' => 'Сидоров', 'class' => '4 A' ], ]; foreach ($array as $key => $student) { if (strtolower(trim($student['name'])) === 'иванов') { unset($array[$key]); } } print_r($array);
Copy Clear