- 授权协议: 未知
- 开发语言: PHP
- 操作系统: 跨平台
- 软件首页: http://php-http.com/
- 软件文档: http://php-http.com/documentation
软件介绍
phpWebHacks 是一个采用PHP开发的高级的HTTP客户端,你只需要数行代码就可以用来模拟浏览器的真实访问行为而无需键盘和鼠标的动作。可以用它来完成HTTP的调试功能。
示例代码
<?php
include 'phpWebHacks.php';
$h = new phpWebHacks;
$page = $h->get('http://webmail.example.com');
include 'phpWebHacks.php';
$h = new phpWebHacks;
$page = $h->get('http://webmail.example.com');
/* username & password */
$form['login_username'] = 'myusername';
$form['login_domain'] = 'example.com';
$form['secretkey'] = 'mypassword';
/* login */
$page = $h->post('redirect.php', $form);
$form['login_username'] = 'myusername';
$form['login_domain'] = 'example.com';
$form['secretkey'] = 'mypassword';
/* login */
$page = $h->post('redirect.php', $form);
>
Paradigms of Artificial Intelligence Programming
Peter Norvig / Morgan Kaufmann / 1991-10-01 / USD 77.95
Paradigms of AI Programming is the first text to teach advanced Common Lisp techniques in the context of building major AI systems. By reconstructing authentic, complex AI programs using state-of-the-......一起来看看 《Paradigms of Artificial Intelligence Programming》 这本书的介绍吧!