Привет, я использую FFMPEG для преобразования загруженного видео с PHP. echo "conversion exercise started…<br/><br/>"; /* looping through all files in the directory */ if ($handle = opendir('assets/uploaded_videos')) { while (false !== ($entry = readdir($handle))) { /* filtering the desired extensions */ if ($entry != "." && $entry != ".." && in_array(substr($entry, strrpos($entry, '.')), array(".wmv", ".mpg", […]
Можно ли обнаружить, что IE находится в режиме совместимости с useragent с PHP ? Я использую IE10 и имею пользовательскийагент Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.1; WOW64; Trident/6.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; .NET4.0C; .NET4.0E) Таким образом, он появляется как Internet Explorer 7. Конечно, было […]