My php version is 7.2,
Website show error details
Error booting Flarum: syntax error, unexpected '$', expecting ',' or ')'
And When I run this command
PHP Parse error: syntax error, unexpected '$', expecting ',' or ')' in /www/wwwroot/domain/vendor/cleverloginname/flarum-ext-autoimage-autovideo/extend.php on line 19
Parse error: syntax error, unexpected '$', expecting ',' or ')' in /www/wwwroot/domain/vendor/cleverloginname/flarum-ext-autoimage-autovideo/extend.php on line 19
So I put the php code on here
namespace CleverLoginName\FlarumExtAutoimageAutovideo;
use Flarum\Extend;
return [
(new Extend\Frontend('forum'))
->content(function (Document $document) {
$document->body[] = $preg_replace("(https?:\/\/[a-z0-9\-\.\/]+\.(?:jpe?g|png|gif))", "<img src="$1"></img>", $document->body[]);
})
];
?>