K
K
kokol2020-02-02 01:19:52
PHP
kokol, 2020-02-02 01:19:52

Vast Advertising errors what to do?

I add vast advertising writes \

Media error: Format(s) not supported or source(s) not foundDownload File: https://wiltube.ru/upload/videos/2020/01/dPQbXEgDW...

but the player supports vast what should I do? ??

Answer the question

In order to leave comments, you need to log in

2 answer(s)
D
dodo512, 2019-05-13
@superhorsy

Probably, the task was to find words in which a mixture of Cyrillic and Latin.
https://regex101.com/r/lEX8iu/1

S
superhorsy, 2019-05-13
@superhorsy

Error - Anchor to the beginning of the line character (^) is used.
Correct like this:

$re = '/( ?([a-zaeA-aE]+([az]+)[a-za-ae]*[ !?.,]?))| ?(([az]+)[a-zaёA-ЯЁ]+[a-za-yaё]*)[ !?.,]*/mi';
$str = 'Supply of beef meat, boneless for the needs of the state budgetary healthcare institution of the Republic of Bashkortostan Infectious Clinical Hospital No. 4 of Ufa ';
preg_match_all($re, $str, $matches, PREG_SET_ORDER, 0);
// Print the entire match result
var_dump($matches);

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question