Heim >Backend-Entwicklung >PHP-Tutorial >PHP 调用IE执行程序

PHP 调用IE执行程序

WBOY
WBOYOriginal
2016-07-28 08:26:361155Durchsuche
<span><span><?php </span><span>/* just copied six lines below ... */</span><span>$Browser</span> = <span>new</span> COM(<span>'InternetExplorer.Application'</span>);
<span>$Browserhandle</span> = <span>$Browser</span>->HWND;
<span>$Browser</span>->Visible = <span>true</span>;
<span>$f1_url</span> = <span>"http://**.com/def.php"</span>;
<span>$Browser</span>->Navigate(<span>$f1_url</span>);
sleep(<span>5</span>);

<span>/* $allforms is NOT an array ... it is an iterator ... */</span><span>$allforms</span> = <span>$Browser</span>->Document->getElementsByTagName( <span>'form'</span> );

<span>/* current() is not implemented ... so we have to run a loop ... */</span><span>foreach</span>( <span>$allforms</span><span>as</span><span>$theform</span> ) {

    <span>/* i also copied these six lines and did some text replace work ... */</span><span>$theform</span>->id->focus();
    <span>$theform</span>->id->value = <span>"username"</span>;
    <span>$theform</span>->pwd->focus();
    <span>$theform</span>->pwd->value = <span>"password"</span>;
    <span>$theform</span>->action->focus();
    <span>$theform</span>->action->click();
    
}

<span>/* bye browser ... have a nice day ... */</span><span>$Browser</span>->Quit();</span></span>

以上就介绍了 PHP 调用IE执行程序,包括了方面的内容,希望对PHP教程有兴趣的朋友有所帮助。

Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn