false, 'error' => 'Page content not available.', ]; } $content = file_get_contents($path); if ($content === false) { return [ 'ok' => false, 'error' => 'Page content not available.', ]; } return [ 'ok' => true, 'content' => $content, 'type' => $type, ]; } }