我有一个代码,该代码使用用户名和密码以及保存在内存中的cookie登录,该cookie在会话结束时到期,但是我需要获取页面的一部分而不是整个页面。我该如何添加特定的字符串来抓取?
//set the URL to the protected file
curl_setopt($ch, CURLOPT_URL, 'URL to grab');
//execute the request
$content = curl_exec($ch);
?>
我现在正在使用的我想从中抢夺
id=" to " so it grabs just that string
苗条
$ Grab = GetStringBetween(getURL(“ url”),“ id =”,'“');
但是那是行不通的,因为它会破坏cookie,所以我需要将它与$ ch一起使用。任何例子都会很棒,有人告诉我
使用strpos()
和substr()
或regex
,但是我是PHP的新手,不知道从哪里开始,我坚持不做任何进一步的帮助或想法会很棒!谢谢大家