我很感兴趣是否有办法从java applet中找到我的java applet在客户端运行的操作系统和浏览器?
答案 0 :(得分:2)
您可以使用以下方法检测操作系统:
<?php
function deleteOldImages($days, $path, $filetypes_to_delete) {
// Open the directory
if ($handle = opendir($path)) {
// Loop through the directory
while (false !== ($file = readdir($handle))) {
// Check the file we're doing is actually a file
if (is_file($path.$file)) {
$file_info = pathinfo($path.$file);
if (isset($file_info['extension']) && in_array(strtolower($file_info['extension']), $filetypes_to_delete)) {
// Check if the file is older than X days old
if (filemtime($path.$file) < ( time() - ( $days * 24 * 60 * 60 ) ) ) {
// Do the deletion
unlink($path.$file);
}
}
} else if (is_dir($path.$file)) {
deleteOldImages($days, $path.$file, $filetypes_to_delete);
}
}
}
}
deleteOldImages(1, '/home/boston64/public_html/webcams/', array("jpg"));
?>
要检测浏览器,您可以查看此link。