<?php $array = [ ['N', 'N', 'Y', 'Y', 'Y', 'Y'], ['N', 'N', 'Y', 'Y', 'N', 'Y'], ['N', 'N', 'Y', 'Y', 'N', 'Y'], ['Y', 'Y', 'Y', 'Y', 'Y', 'Y'], ]; var_export( array_map( fn(...$column) => implode(',', $column), ...$array ) );
You have javascript disabled. You will not be able to edit any code.