我在我的页面上收到此错误:
警告:出于安全原因,exec() 在第 2036 行的 /home/a2297145/public_html/android/index.php 中被禁用
这是代码:
//
// Determine the size of a file
//
public static function getFileSize($file)
{
$sizeInBytes = filesize($file);
// If filesize() fails (with larger files), try to get the size from unix command line.
if (EncodeExplorer::getConfig("large_files") == true || !$sizeInBytes || $sizeInBytes < 0) {
$sizeInBytes=exec("ls -l '$file' | awk '{print $5}'");
}
return $sizeInBytes;
}
你能帮我解决这个问题吗?