I need to install the win32std extension into php 5+. Php_win32std.dll is present in both php\extensions\ and php\ext\. I have confirmed that:
extension_dir = "C:\Program Files\xampp\php\ext\" in php.ini.
I have removed the semi-colon from extension=php_win32std.dll.
Yet, when I run this snippet:
Code:
<?php
win_beep('*');
win_shell_execute("C:\\program files\\xampp\\htdocs\\tst.htm", "edit");
?>
I get the diagnostic:
Fatal error: Call to undefined function win_beep() in C:\Program Files\xampp\htdocs\win_shell_exec.php on line 2
What do you suppose is wrong? Do I need to do something more to install the win32std extension?
Bincodinlong