Voting

: six plus two?
(Example: nine)

The Note You're Voting On

pavankumar at tutorvista dot com
14 years ago
To know, what are the {php} extensions loaded & version of extensions :

<?php
foreach (get_loaded_extensions() as $i => $ext)
{
echo
$ext .' => '. phpversion($ext). '<br/>';
}
?>

<< Back to user notes page

To Top