PHP 8.5.0 Beta 1 available for testing

Voting

: six minus three?
(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