3v4l.org

run code in 300+ PHP versions simultaneously
<?php $arr = [ [ 'type' => 'comment', "line_index" => 0, "text_b64" => "OyBjUGFuZWwgZmlyc3Q6ODguMC4xMiAodXBkYXRlX3RpbWUpOjE2MTg1NDYxNDIgQ3BhbmVsOjpab25lRmlsZTo6VkVSU0lPTjoxLjMgaG9zdG5hbWU6cjExOC5sb24yLm15c2VjdXJlY2xvdWRob3N0LmNvbSBs", ], [ "line_index" => 1, "text_b64" => "OyBab25lIGZpbGUgZm9yIG9ha3RyZWVkZW50YWxtb3J0aW1lci5jby51aw==", "type" => "comment", ], [ "text_b64" => "JFRUTCAxNDQwMA==", "line_index" => 2, "type" => "control", ], [ "line_index" => 3, "dname_b64" => "b2FrdHJlZWRlbnRhbG1vcnRpbWVyLmNvLnVrLg==", "record_type" => "SOA", "ttl" => 30, "type" => "record", "data_b64" => [], ], [ "dname_b64" => "b2FrdHJlZWRlbnRhbG1vcnRpbWVyLmNvLnVrLg==", "line_index" => 10, "record_type" => "NS", "ttl" => 30, "type" => "record", "data_b64" => [], ], [ "ttl" => 30, "dname_b64" => "b2FrdHJlZWRlbnRhbG1vcnRpbWVyLmNvLnVrLg==", "line_index" => 11, "record_type" => "NS", "data_b64" => [], "type" => "record", ], ]; $result = array_filter( $arr, function (array $record) { if ($record['type'] == 'record') { return true; } return false; } ); print_r($result);
Output for 7.3.0 - 7.3.33, 7.4.0 - 7.4.33, 8.0.0 - 8.0.30, 8.1.0 - 8.1.33, 8.2.0 - 8.2.29, 8.3.0 - 8.3.4, 8.3.6 - 8.3.27, 8.4.1 - 8.4.14
Array ( [3] => Array ( [line_index] => 3 [dname_b64] => b2FrdHJlZWRlbnRhbG1vcnRpbWVyLmNvLnVrLg== [record_type] => SOA [ttl] => 30 [type] => record [data_b64] => Array ( ) ) [4] => Array ( [dname_b64] => b2FrdHJlZWRlbnRhbG1vcnRpbWVyLmNvLnVrLg== [line_index] => 10 [record_type] => NS [ttl] => 30 [type] => record [data_b64] => Array ( ) ) [5] => Array ( [ttl] => 30 [dname_b64] => b2FrdHJlZWRlbnRhbG1vcnRpbWVyLmNvLnVrLg== [line_index] => 11 [record_type] => NS [data_b64] => Array ( ) [type] => record ) )
Output for 8.3.5
Warning: PHP Startup: Unable to load dynamic library 'sodium.so' (tried: /usr/lib/php/8.3.5/modules/sodium.so (libsodium.so.23: cannot open shared object file: No such file or directory), /usr/lib/php/8.3.5/modules/sodium.so.so (/usr/lib/php/8.3.5/modules/sodium.so.so: cannot open shared object file: No such file or directory)) in Unknown on line 0 Array ( [3] => Array ( [line_index] => 3 [dname_b64] => b2FrdHJlZWRlbnRhbG1vcnRpbWVyLmNvLnVrLg== [record_type] => SOA [ttl] => 30 [type] => record [data_b64] => Array ( ) ) [4] => Array ( [dname_b64] => b2FrdHJlZWRlbnRhbG1vcnRpbWVyLmNvLnVrLg== [line_index] => 10 [record_type] => NS [ttl] => 30 [type] => record [data_b64] => Array ( ) ) [5] => Array ( [ttl] => 30 [dname_b64] => b2FrdHJlZWRlbnRhbG1vcnRpbWVyLmNvLnVrLg== [line_index] => 11 [record_type] => NS [data_b64] => Array ( ) [type] => record ) )

preferences:
164.52 ms | 411 KiB | 5 Q