i need to explode this {{{data.comment}}} in php.
I'm a beginner thank you.
<span class="um-activity-comment-text">
<?php
$comm = '{{{data.comment}}}';
echo explode(' ', $comm)[0]; //--> this is not working.
?>
</span>