Skip to content

Instantly share code, notes, and snippets.

@bohwaz
bohwaz / extract_sisimai_reasons.php
Last active March 6, 2026 16:07
Export Sisimai reasons to JSON
<?php
function ignore_spaces_regexp(string $r) {
return str_replace(' ', '\s*', $r);
}
function parse_reason(string $path)
{
$src = file_get_contents($path);
$out = new \stdClass;