Jump to content

How to check if client browser support pdf or not????


KLS_andy

Recommended Posts

http://planet-source-code.com/vb/scripts/ShowCode.asp?txtCodeId=2071&lngWId=8

 

<?php

    ob_start( );
    phpinfo( );
    $phpinfo = ob_get_contents( );
    ob_end_clean( );
    
    if (strpos($phpinfo, "module_pdf") === FALSE) {
    echo "You do not have PDF support in your PHP, sorry.";
    } else {
    echo "You have PDF support!";
    }

?>

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.