php
Editorjs blocks - JSON to HTML PHP
<?php
function jsonToHtml($jsonStr) {
$obj = json_decode($jsonStr);
$html = '';
foreach ($obj->blocks as $block) {
switch ($block->type) {
case 'paragraph':
$html .= '<p>' . $block->data->text . '</p>';
break;
case 'header':
$html .= '<h'. $block->data->level .'>' . $block->data->text . '</h'. $block->data->level .'>';
break;
case 'raw':
$html .= $block->data->html;
break;
case 'list':
$lsType = ($block->data->style == 'ordered') ? 'ol' : 'ul';
$html .= '<' . $lsType . '>';
foreach($block->data->items as $item) {
$html .= '<li>' . $item . '</li>';
}
$html .= '</' . $lsType . '>';
break;
case 'code':
$html .= '<pre><code class="language-'. $block->data->lang .'">'. $block->data->code .'</code></pre>';
break;
case 'image':
$html .= '<div class="img_pnl"><img src="'. $block->data->file->url .'" /></div>';
break;
default:
break;
}
}
return $html;
}
?>
Output
return HTML string from JSON blocks provided by Editorjs
The code can be used to get the HTML from JSON data blocks provided by Editorjs. We have used simple PHP code to using switch case to convert that.
Was this helpful?
Similar Posts
- Convert HTML code to plain text in PHP
- Encode html special characters and real escape string in php
- Return JSON from a PHP script
- Convert characters to lowercase using strtolower() function in PHP
- Check empty string in PHP
- Calculate length of a string using strlen() function in php
- nl2br() function in PHP