Quick actions

cmd+k|ctrl+k

Navigation

Languages

replace tag by TAG with preg

Snippet info

Language

Php

Visibility

public

Author

dmitry8912

Created

2016-07-05T18:00:30Z

Updated

2017-07-12T17:54:56Z

<?php
$file=file_get_contents('yandex.html');
if($file)
{
    $new_file = preg_replace_callback('<[0-9a-z]>',function ($matches) { strtoupper($matches[0]);},$file);
    file_put_contents('yandex.html',$new_file);
};
echo($file);
INFO