Jacek Kowalski
2012-06-23 8bd4d9f5065a5b94dc83f0ed6859ed0d93c75d84
commit | author | age
8bd4d9 1 <?php
JK 2 function test($name, $expr) {
3     echo '<tr> <td>'.$name.'</td> <td>';
4     if($expr) {
5         echo '<strong style="color:darkgreen">OK</strong><br />';
6     }
7     else
8     {
9         echo '<strong style="color:red">FAIL</strong><br />';
10     }
11     echo '</td> </tr>'."\n";
12 }
13
14 function testdir($dir) {
15     test($dir, is_writable($dir));
16 }
17
18 echo '<table>
19 <tr> <th class="head" colspan="2">Interpreter PHP</th> </tr>
20 ';
21 test('Wersja PHP >= 5.2', version_compare(PHP_VERSION, '5.2.0', '>='));
22 test('magic_quotes_gpc = Off', (get_magic_quotes_gpc() == 0));
23 test('allow_url_fopen = On', (ini_get('allow_url_fopen') == 1));
24 test('setlocale(pl_PL.UTF8)', setlocale(LC_CTYPE, 'pl_PL.UTF8', 'pl_PL', 'polish', 'plk'));
25
26 echo '<tr> <th class="head" colspan="2">Rozszerzenia PHP</th> </tr>
27 ';
28 test('cURL', function_exists('curl_init'));
29 test('mbstring', function_exists('mb_strlen'));
30 test('iconv', function_exists('iconv'));
31 test('Ctype', function_exists('ctype_digit'));
32 test('DOM', class_exists('DOMDocument'));
33 test('SimpleXML', class_exists('SimpleXMLElement'));
34 test('PDO', class_exists('PDO'));
35 test('PDO SQLite', in_array('sqlite', PDO::getAvailableDrivers()));
36
37 echo '<tr> <th class="head" colspan="2">Prawa do zapisu w katalogach</th> </tr>
38 ';
39 testdir('./cache');
40 testdir('./data');
41 testdir('./data/humor');
42 testdir('./data/humor/archiwum');
43 testdir('./data/kino/cache');
44 testdir('./data/kurs');
45 testdir('./data/kurs/archiwum');
46 testdir('./data/lotto');
47 testdir('./data/lotto/archiwum');
48 testdir('./data/pogoda');
49 testdir('./data/rss');
50 testdir('./data/tv');
51 testdir('./data/tv/cache');
52 testdir('./db');
53 testdir('./database');
54
55 echo '</table>';
56 ?>