Skip to content

Instantly share code, notes, and snippets.

View jahidulpabelislam's full-sized avatar
🎯
Busy, Working on Exciting Projects!

Jahidul Pabel Islam jahidulpabelislam

🎯
Busy, Working on Exciting Projects!
View GitHub Profile
@jahidulpabelislam
jahidulpabelislam / php2twig.php
Last active October 16, 2023 09:56 — forked from dbisso/php2twig.php
Twiggify
#!/usr/bin/env php
<?php
$file = $argv[1];
$contents = file_get_contents($file);
/** @var $patterns */
$patterns = [
/** @lang PhpRegExp */
'~<\?=[ ]?([^?]+);?[ ]?\?>~m' => '{{ $1 }}',