- win32std is not php-gtk
před 43 týdnů 3 dny - php gtk windows extension exists
před 44 týdnů 2 dny - Added capabilities
před 44 týdnů 6 dnů - GtkHtml-3.0.dll missing error
před 47 týdnů 2 dny - No PHP 6
před 1 rok 15 týdnů - Recurring question!
před 1 rok 19 týdnů - Use the forum for support questions
před 1 rok 23 týdnů - PHP-GTK installation complements for Ubuntu 10.04 Natty Narwhal
před 1 rok 23 týdnů - Article restored: who's willing to do the others ?
před 1 rok 23 týdnů - you can use COM with WScript.Shell or the REG command in Windows
před 1 rok 40 týdnů


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.