summaryrefslogtreecommitdiff
path: root/ext/curl/tests/bug79741.phpt
blob: 17c3f57e049cca129bcb8bb8281c1118e1416d91 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
--TEST--
Bug #79741: curl_setopt CURLOPT_POSTFIELDS asserts on object with declared properties
--FILE--
<?php

class Test {
	public $prop = "value";
}

$ch = curl_init();
curl_setopt($ch, CURLOPT_POSTFIELDS, new Test);

?>
===DONE===
--EXPECT--
===DONE===