本文整理汇总了PHP中curl::first_connect方法的典型用法代码示例。如果您正苦于以下问题:PHP curl::first_connect方法的具体用法?PHP curl::first_connect怎么用?PHP curl::first_connect使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类curl
的用法示例。
在下文中一共展示了curl::first_connect方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: store
curl_setopt($this->ch, CURLOPT_RETURNTRANSFER, 1);
}
}
function first_connect($loginform, $logindata)
{
curl_setopt($this->ch, CURLOPT_URL, $loginform);
curl_setopt($this->ch, CURLOPT_POSTFIELDS, $logindata);
}
function store()
{
$store = curl_exec($this->ch);
}
function execute($page)
{
curl_setopt($this->ch, CURLOPT_URL, $page);
$this->content = curl_exec($this->ch);
}
function close()
{
curl_close($this->ch);
}
function __toString()
{
return $this->content;
}
}
$content = new curl();
$content->first_connect('https://www.lsf.hs-weingarten.de/qisserver/servlet/de.his.servlet.RequestDispatcherServlet?state=user&type=1', 'action=dologin&username=' . $username . '&password=' . $password . '&submit=Jetzt+einloggen');
$content->store();
$content->execute('https://www.lsf.hs-weingarten.de/qisserver/servlet/de.his.servlet.RequestDispatcherServlet?state=user&type=0&category=menu.browse&breadCrumbSource=&startpage=portal.vm');
$countMatches = preg_match_all('%asi=(.*?)\\"%s', $content, $matches, PREG_SET_ORDER);