年纪大了, 不免需要经常找工作。找工作就得准备笔试、面试之类的。但我发现有这几点麻烦:
26
2023
08
25
2023
08
25
2023
08
致命错误:curl/curl.h:没有那个文件或目录
需要安装curl-devel,即:
yum -y install curl-devel
然后再:
发布:阿夜 | 分类:php | 评论:0 | 浏览:
23
2023
08
asp生成mdb
Function f_backup_addnew(ym)
vDb=Server.MapPath("../#log#/#log#_"&ym&".mdb")
Set fso = Server.CreateObject("Scripting.FileSystemObject")
发布:阿夜 | 分类:Asp | 评论:0 | 浏览:
22
2023
08
asp是否存在字符
if Instr(ab, "a")>0 then或
if InstrRev(ab, "a")>0 then
Split(str,"a")(0)
发布:阿夜 | 分类:Asp | 评论:0 | 浏览:
21
2023
08
asp数组对比
<%
t1=Array("190000-240000","000000-142000")
t2=Ftime(time(), "h", "")
for i=0 to Ubound(t1)
发布:阿夜 | 分类:Asp | 评论:0 | 浏览:
20
2023
08
asp数组
<%
re="3019:1"
MyArray = Array(re)
UBound(MyArray)
%>
<%=UBound(MyArray) %>//<%=MyArray(0)%>
======================================
str = Split(str,",")
发布:阿夜 | 分类:Asp | 评论:0 | 浏览:
15
2023
08
css禁止长按
* {
-webkit-user-select:none;
-moz-user-select:none;
-ms-user-select:none;
user-select:none;
}
input{-webkit-user-select:auto;}
发布:阿夜 | 分类:css | 评论:0 | 浏览:
06
2023
08
thinkphp6模型:六:查询
如果你是在模型内部获取数据,请不要使用$this->name
的方式来获取数据,请使用$this->getAttr('name')
替代。
获取单个数据
发布:阿夜 | 分类:php | 评论:0 | 浏览: