- 博客(4)
- 收藏
- 关注
原创 PHP连接操作sqlserver
PHP连接操作sqlserver(windows)主要说一下连接中遇到的问题1、报错ODBC这时候需要在window里面安装对应的msi、https://www.microsoft.com/en-us/download/confirmation.aspx?id=364342、php要支持sqlserver要安装对应版本的php的扩展并打开(在网盘中)下面是可以使用的方案:1、7.0.x7.0.x的扩展下载地址:Microsoft Drivers for PHP for SQL Server
2022-01-20 09:56:21
1581
原创 jquery radio取值,checkbox取值,select取值
jQuery获取Select选择的Text和Value:语法解释:$("#select_id").change(function(){//code…}); //为Select添加事件,当选择其中一项时触发var checkText=$("#select_id").find(“option:selected”).text(); //获取Select选择的Textvar checkValue=$("#select_id").val(); //获取Select选择的Valuevar check
2020-08-25 17:18:43
266
原创 js jq 点击按钮复制内容
jq 点击按钮复制内容input 方式复制内容var temp = $("<input>");$("body").append(temp);temp.val($('#'+id).val()).select();document.execCommand("copy");temp.remove();textarea 方式复制内容(可以带上换行等格式)var temp = $("<textarea>");$("body").append(temp);cons
2020-07-16 09:51:30
663
原创 PHP PDF内容识别 抓取信息 方法
PHP PDF内容识别 抓取信息 方法PDF Parser使用 PDF Parser 参考:http://www.pdfparser.org/(注意:composer.json 更新 pdfparser包 composer程序 安装地址:https://getcomposer.org/Composer-Setup.exe;但是我在识别PDF 1.5版本的时候识别不出来 所以就使用了第二种方法)$parser = new Parser();$pdf = $parser->p
2020-07-14 18:34:36
1488
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人