Stella981 Stella981
3年前
Selenium+python
跟着悠悠学coding:utf8fromseleniumimportwebdriverdriverwebdriver.Firefox()driver.get("https://www.baidu.com")<inputid"kw"class"s_ipt"type"text"autocomplete"off"ma
Wesley13 Wesley13
3年前
PHP获取API接口XML数据
<?phpheader('ContentType:text/html;charsetutf8');//1.获取xml数据$xmldatafile_get_contents("http://api网址");//2.把xml转换为simplexml对象//$xmlstringsimplexm
Stella981 Stella981
3年前
D3.js selectAll()函数与enter()函数
<!DOCTYPE html<html<head<meta charset"utf8"<titleD3 Test</title<script type"text/javascript" src"d3.v3.js"</script</head<body
Stella981 Stella981
3年前
RegOpenKeyEx函数
RegOpenKeyEx函数打开指定的注册表项。LONGRegOpenKeyEx(HKEYhKey,//handletoopenkeyLPCTSTRlpSubKey,//subkeynameDWORDulOptions,//reservedR
Wesley13 Wesley13
3年前
oracle函数
单行函数SQL字符函数SQLselectlower('HelloWorld')转小写,upper('HelloWorld')转大写,initcap('helloworld')首字母大写 2 fromdual;转小写   转大写   首字母大写             
Stella981 Stella981
3年前
Scala函数
一、方法方法定义Scala中/%的作用和Java一样,但是特别的是,这些操作符实际上是方法。1to101.to(10)defm2(a:Int,b:Int):Intabdefm
Stella981 Stella981
3年前
Lua 函数
【1】函数定义Lua函数定义格式如下:1optional_function_scopefunctionfunction_name(argument1,argument2,argument3...,argumentn)2function_body3returnresult_params_comma_
Wesley13 Wesley13
3年前
CAST()函数
6.4 转换函数数据类型转换可以通过CAST()和CONVERT()函数来实现。大多数情况下,这两个函数是重叠的,它们反映了SQL语言的演化历史。这两个函数的功能相似,不过它们的语法不同。虽然并非所有类型的值都能转变为其他数据类型,但总的来说,任何可以转换的值都可以用简单的函数实现转换。6.4.1 CAST()函数CAST()函数
Stella981 Stella981
3年前
DrawIndexedPrimitive()函数
HRESULTDrawIndexedPrimitive(  D3DPRIMITIVETYPEType,  INTBaseVertexIndex,  UINTMinIndex,  UINTNumVertices,  UINTStartIndex,  UINTPrimitiveCount 
前端开发之函数式编程实践 | 京东云技术团队
函数式编程是一种编程范式,它将程序抽象为函数和数据结构,通过函数调用来实现程序的功能,并且函数可以作为参数传递给其他函数。