<?php function pdfVersion($filename) { $fp = @fopen($filename, 'rb'); if (!$fp) { return 0; } /* Reset file pointer to the start */ fseek($fp, 0); ...
確定! 回上一頁