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 $data = [ ['id' => '3202','total' => '5'], ['id' => '3190','total' => '2'], ['id' => '3199','total' => '5'] ]; $total_column = array_column($data, 'total'); $sum = array_sum($total_column); printf('The sum of total column: %s', $sum);
Copy Clear