PHPize Online / SQLize Online  /  SQLtest Online

A A A
Share      Blog   Popular
Copy Format Clear
Copy Clear
Copy Format Clear
<?php $a1=[ [ 'name' => 'New Customer', 'description' => 'Automatically dispositioned when the Agent creates a New Customer during a call', 'is_enabled' => false, 'status' => CallDispositionStatuses::Active, ], [ 'name' => 'Service Related', 'description' => 'Automatically dispositioned when the Agent creates a Work Order during a call', 'is_enabled' => false, 'status' => CallDispositionStatuses::Active, ]]; print_r(array_filter($a1, fn($item) => $item['name'] === 'New Customer'));
Show:  
Copy Clear