- 01
- 02
- 03
- 04
- 05
- 06
- 07
- 08
- 09
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
- 22
- 23
private function http_post($url, $post_string) {
// add any additional curl options here
$options = array(CURLOPT_URL => $url,
CURLOPT_POST => true,
CURLOPT_POSTFIELDS => $post_string,
CURLOPT_USERAGENT => "PubSubHubbub-Publisher-PHP/1.0");
$ch = curl_init();
curl_setopt_array($ch, $options);
$response = curl_exec($ch);
$this->last_response = $response;
$info = curl_getinfo($ch);
curl_close($ch);
// all good
if ($info['http_code'] == 204)
return true;
return false;
}
guest 17.06.2010 13:23 # 0
guest 17.06.2010 13:52 # 0
guest 17.06.2010 13:59 # +1
Я же говорю что PHP выпрямит извилины у кого угодно
guest 17.06.2010 15:32 # −1
guest 17.06.2010 16:07 # 0
Что не так в волшебном числе?
Что не так в хеше вместо объекта?
Да нет, ничего
guest 17.06.2010 16:10 # −2
guest 17.06.2010 16:17 # 0
guest 17.06.2010 17:27 # −2
guest 17.06.2010 18:08 # −4
define('OK', 204);
if ($info->httpCode() == OK)
cheef 17.06.2010 18:29 # 0
guest 17.06.2010 20:15 # 0
guest 17.06.2010 20:43 # +2
guest 18.06.2010 02:01 # −1
bugmenot 19.06.2010 08:04 # 0
204 это нихуя не ок
это ж ебануться можно насколько можно не знать свою область
guest 19.06.2010 11:11 # 0
if ($info->httpCode() == NO_RESPONSE)
Lure Of Chaos 19.06.2010 12:23 # −1
Lure Of Chaos 19.06.2010 12:24 # −1
Lure Of Chaos 17.06.2010 15:36 # +2
wiz 17.06.2010 16:06 # 0
Lure Of Chaos 17.06.2010 20:43 # 0
guest 19.06.2010 11:12 # +2
Server has received the request but there is no information to send back, and the client should stay in the same document view. This is mainly to allow input for scripts without changing the document at the same time.
пиздец успех...
wiz 17.06.2010 14:11 # −4
striker 17.06.2010 14:14 # +2
там есть контекст. можно отправить и post
wiz 17.06.2010 14:19 # −5