Subversion-Projekte lars-tiefland.php_share

Revision

Details | Letzte Änderung | Log anzeigen | RSS feed

Revision Autor Zeilennr. Zeile
1 lars 1
<?php
2
xdebug_start_trace();
3
 
4
function test_extensions()
5
{
6
    $image = imagecreate(320, 240);
7
    imageantialias($image, true);
8
    return $image;
9
}
10
 
11
print_r(apache_get_modules());
12
 
13
if (!extension_loaded('SQLite')) {
14
    $prefix = (PHP_SHLIB_SUFFIX === 'dll') ? 'php_' : '';
15
    dl($prefix . 'sqlite.' . PHP_SHLIB_SUFFIX);
16
    echo 'SQLite version : ' . sqlite_libversion();
17
}
18
 
19
xdebug_stop_trace();
20
?>