2021年08月13日 1.1k 阅读 php curl基本使用 基本使用1. 初始化初始化非常简单,只需要调用curl_init()函数即可,他会返回一个curl句柄,后边几乎其他关于curl的设置,关闭等函数都需要使用这个句柄$curl = curl_in...
2021年06月17日 696 阅读 php array_map()函数 array_map为数组每个元素对应回调函数,返回数组,返回的数组是为每个元素应用回调函数之后的数组。 callback 函数形参的数量和传给 array_map() 数组数量,两者必须一样。例...
2021年06月16日 692 阅读 php strpos()函数 strpos查找字符串首次出现的位置语法strpos ( string $haystack , mixed $needle [, int $offset = 0 ] ) : int参数hayst...
2021年06月16日 722 阅读 php get_class()函数 get_class返回对象的类名,如果有命名空间会返回带有命名空间的完整类名。语法get_class ([ object $object = NULL ] ) : string参数object:...