- win32std is not php-gtk
43 weeks 1 day ago - php gtk windows extension exists
44 weeks 18 hours ago - Added capabilities
44 weeks 4 days ago - GtkHtml-3.0.dll missing error
47 weeks 19 hours ago - No PHP 6
1 year 15 weeks ago - Recurring question!
1 year 19 weeks ago - Use the forum for support questions
1 year 23 weeks ago - PHP-GTK installation complements for Ubuntu 10.04 Natty Narwhal
1 year 23 weeks ago - Article restored: who's willing to do the others ?
1 year 23 weeks ago - you can use COM with WScript.Shell or the REG command in Windows
1 year 40 weeks ago


you can use COM with WScript.Shell or the REG command in Windows
<?php$a = new COM('WScript.Shell');
var_dump($a);
var_dump($a->RegRead("HKCR\.txt\\"));
//$a->RegWrite($key, $val, $type);
?>
<?phpvar_dump(exec("REG query HKCR\.txt"));
?>
php gtk windows extension exists
U can use the win32std extension for php.
contents:
Win32 dialogs, Windows utility functions, Registry access and Windows resources
lookup: http://wildphp.free.fr/
win32std is not php-gtk
This is another way to build rich UIs with PHP on Windows, but it AIUI it basically exposes the native Win32 APIs (or at least a subset of these) in a PHP extension; this is completely different from PHP-GTK, which exposes a GLib / GTK API on top of, not Win32 itself.