10 lines
210 B
PHP
10 lines
210 B
PHP
<?php
|
|
function search(string $strFromFile, string $strForSearch): ?string
|
|
{
|
|
if($strFromFile) {
|
|
if (preg_match($strForSearch, $strFromFile))
|
|
return $strFromFile;
|
|
}
|
|
|
|
return null;
|
|
} |