博客园  :: 首页  :: 新随笔  :: 订阅 订阅  :: 管理

摘要: 博客目录 [2017-06-30] 阅读全文

posted @ 2013-04-24 11:11 PHP-张工 阅读(1978) 评论(0) 推荐(1) 编辑

2024年10月9日

摘要: 在网上找了好几个金额大写的代码,经过测试都多少有点问题。代码根据网上的代码优化了以下内容: 1. 连续多个零时,只显示1个零2. 超过1万时,并且万位无数字时,万不显示3. 小数只有分时,会显示为角4. 负数时添加负号 将金额转换为大写,代码如下: /** * 将数值金额转换为中文大写金额 */ p 阅读全文

posted @ 2024-10-09 17:09 PHP-张工 阅读(7) 评论(0) 推荐(0) 编辑

摘要: 开发过程中,会有在网页上直接预览doc、excel、ppt等文档的需求。微软提供了一个可在线预览文档的快捷网页。 使用方法: https://view.officeapps.live.com/op/view.aspx?src=xxx.xlsx https://view.officeapps.live 阅读全文

posted @ 2024-10-09 11:44 PHP-张工 阅读(257) 评论(0) 推荐(0) 编辑

2024年9月26日

摘要: 修改网址的 .conf 文件 location ~ \.(jpg|png|gif|jpeg)$ { valid_referers none blocked www.zweb.com; if ($invalid_referer) { #rewrite ^/ http://site3.test.com/ 阅读全文

posted @ 2024-09-26 11:58 PHP-张工 阅读(7) 评论(0) 推荐(0) 编辑

2024年9月19日

摘要: 透明的panel,可用用作遮罩层。 using System; using System.Collections.Generic; using System.ComponentModel; using System.ComponentModel.DataAnnotations; using Syst 阅读全文

posted @ 2024-09-19 18:02 PHP-张工 阅读(45) 评论(0) 推荐(0) 编辑

2024年6月18日

摘要: 使用Nuget安装Tesseract 地址:https://www.nuget.org/packages/Tesseract访问:https://github.com/tesseract-ocr/tessdata/blob/main/eng.traineddata下载语言包,将语言包放在程序生成目录 阅读全文

posted @ 2024-06-18 14:35 PHP-张工 阅读(135) 评论(0) 推荐(0) 编辑

2024年3月5日

摘要: 在实际的项目开发中,可能会有在WinForm程序中提供Web服务器的需求。通过owin可以很方便的实现,并且可提供Web静态文件访问服务。 操作方法: 1. 在NuGet引用owin Microsoft.AspNet.WebApi.OwinMicrosoft.AspNet.WebApi.OwinSe 阅读全文

posted @ 2024-03-05 15:48 PHP-张工 阅读(1042) 评论(0) 推荐(0) 编辑

2023年10月11日

摘要: 使用UDP可以实现局域网内的广播通信,基于广播功能可以做到无服务器,自发现用户。 UDP监听核心代码: using (UdpClient client = new UdpClient(new IPEndPoint(IPAddress.Any, Port))) { IPEndPoint endpoin 阅读全文

posted @ 2023-10-11 16:17 PHP-张工 阅读(145) 评论(0) 推荐(0) 编辑

2023年3月14日

摘要: string code = @" using System; namespace CompilerTool { class Class1 { public Class1() { } public string now() { return DateTime.Now.ToString(""yyyy - 阅读全文

posted @ 2023-03-14 12:02 PHP-张工 阅读(94) 评论(0) 推荐(0) 编辑

2022年7月20日

摘要: SSE 介绍:https://developer.mozilla.org/zh-CN/docs/Web/API/EventSource 服务器端代码: <?php header('X-Accel-Buffering: no'); header('Content-Type: text/event-st 阅读全文

posted @ 2022-07-20 17:21 PHP-张工 阅读(1850) 评论(0) 推荐(0) 编辑

2021年12月7日

摘要: 基于 URLSearchParams 获取当URL参数 1 function urlGet() 2 { 3 var urlSearchParams = new URLSearchParams(window.location.search); 4 var params = Object.fromEnt 阅读全文

posted @ 2021-12-07 15:34 PHP-张工 阅读(142) 评论(0) 推荐(0) 编辑