- 论坛徽章:
- 0
|
php的curl_multi_info_read函数,在php 5.2之前是不能用的。
我发现现在的版本(5.2.8)不光能用,而且远没那么麻烦,
官方文档说:
Warning
The data the returned resource points to will not survive calling curl_multi_remove_handle().
经过简单测试,发现
其实返回值数组"handle"键内的curl handle和外界传递进去的curl handle 全等(===),
不需要做其他特殊处理,可以直接调用curl_multi_remove_handle这样的函数。
那么我想,这句警告可能只是吓唬人,或者这句话直接复制于curl的原生api文档:
WARNING: The data the returned pointer points to will not survive calling curl_multi_cleanup(3), curl_multi_remove_handle(3) or curl_easy_cleanup(3).
请教大家是不是这样?我是否忽略了什么? |
|