php win32执行程序module
学写php扩展的练手之作.点下面连接下载:
php_win32_CreateProcess_src
然后你就可以这么使用了:
<?php
if (!dl("php_testmod.dll")) {
echo "Unable to load php_testmod.dll";
exit;
}
echo (create_process("ipconfig /all"));
?>
if (!dl("php_testmod.dll")) {
echo "Unable to load php_testmod.dll";
exit;
}
echo (create_process("ipconfig /all"));
?>