PHPize Online / SQLize Online  /  SQLtest Online

A A A
Share      Blog   Popular
Copy Format Clear
-- Hint: use Ctrl+Enter for SQL autocomplete create table `bes` ( `name` varchar(64), `many` int, `activation` int ); insert into `bes` values ('Name1', 50, 1), ('Name2', 1, 1), ('Name3', 50, 0); SELECT `name`, `many` FROM `bes` WHERE `activation`=1;
Copy Clear
Copy Format Clear
<?php $arr =[1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20]; $res = array_filter ( $arr, function($el) { return ($el % 2 == 0); } ); print_r($res);
Show:  
Copy Clear