Skip to content

Instantly share code, notes, and snippets.

@kitzelh
kitzelh / index.html
Created June 16, 2018 16:12
Transpose Table with Caption (CSS-Only)
<div id="site">
<header id="header">Heading</header>
<main id="content">
<p id="one">First Paragraph</p>
<p id="two">Second Paragraph</p>
<p id="third">Third Paragraph</p>
<p id="fourth">
<table>
<caption>Original Table</caption>
<thead>
@kitzelh
kitzelh / replace_and_clean.php
Created June 16, 2018 05:56
Array Replace Recursive and Clean Out Keys with Null Value
<?php // https://3v4l.org/5fRhD
function ArrayCleaner($input) {
foreach ($input as &$value) {
if (is_array($value)) {
$value = ArrayCleaner($value);
}
}
return array_filter($input, function($item){