Skip to content

Instantly share code, notes, and snippets.

View bezalkogoln1y-coder's full-sized avatar
💭
Learn JS

Artyom bezalkogoln1y-coder

💭
Learn JS
  • Naberezhnye Chelny
View GitHub Profile
{
"name": "evolutioncms/custom",
"require": {
"zeeyn/evocms-custom-template": "*",
"barryvdh/laravel-ide-helper": "*",
"guzzlehttp/guzzle": "*",
"psr/http-message": "*"
},
"autoload": {
"psr-4": {
@bezalkogoln1y-coder
bezalkogoln1y-coder / regex.php
Last active August 19, 2020 11:01
Гист с тестами регулярок
<?php
$test = 'Обработанная регулярка - @makeIcon(fas fa-crit) и здесь - @makeIcon(fab fa-cli)';
$test = preg_replace_callback('#@makeIcon\(\D+?\)#', function($main) {
preg_match('#\((\D+?)\)#', $main[0], $icon);
return '['.$icon[1].']';
}, $test);
echo $test;