posted @ 2013-04-24 11:11 PHP-张工 阅读(1980) 评论(0) 推荐(1) 编辑
posted @ 2024-12-20 17:20 PHP-张工 阅读(127) 评论(1) 推荐(1) 编辑
摘要:
有这样一个有趣的公式:x<100; (x*53*17)%100 = x;这个公式的原理:53*17=901,x*901,的数后2位数还是x;任何符合 a * b = 100 * n +1 的值都可以。根据这个原理就可以做一个简单的加密操作。比如要加密的数是 26,使用(26*53)%100=78,加 阅读全文
posted @ 2024-12-20 17:20 PHP-张工 阅读(127) 评论(1) 推荐(1) 编辑
摘要:
在网上找了好几个金额大写的代码,经过测试都多少有点问题。代码根据网上的代码优化了以下内容: 1. 连续多个零时,只显示1个零2. 超过1万时,并且万位无数字时,万不显示3. 小数只有分时,会显示为角4. 负数时添加负号 将金额转换为大写,代码如下: /** * 将数值金额转换为中文大写金额 */ p 阅读全文
posted @ 2024-10-09 17:09 PHP-张工 阅读(24) 评论(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-张工 阅读(573) 评论(0) 推荐(0) 编辑
摘要:
修改网址的 .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-张工 阅读(9) 评论(0) 推荐(0) 编辑
摘要:
透明的panel,可用用作遮罩层。 using System; using System.Collections.Generic; using System.ComponentModel; using System.ComponentModel.DataAnnotations; using Syst 阅读全文
posted @ 2024-09-19 18:02 PHP-张工 阅读(67) 评论(0) 推荐(0) 编辑
摘要:
使用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-张工 阅读(166) 评论(0) 推荐(0) 编辑
摘要:
在实际的项目开发中,可能会有在WinForm程序中提供Web服务器的需求。通过owin可以很方便的实现,并且可提供Web静态文件访问服务。 操作方法: 1. 在NuGet引用owin Microsoft.AspNet.WebApi.OwinMicrosoft.AspNet.WebApi.OwinSe 阅读全文
posted @ 2024-03-05 15:48 PHP-张工 阅读(1142) 评论(0) 推荐(0) 编辑
摘要:
使用UDP可以实现局域网内的广播通信,基于广播功能可以做到无服务器,自发现用户。 UDP监听核心代码: using (UdpClient client = new UdpClient(new IPEndPoint(IPAddress.Any, Port))) { IPEndPoint endpoin 阅读全文
posted @ 2023-10-11 16:17 PHP-张工 阅读(159) 评论(0) 推荐(0) 编辑
摘要:
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-张工 阅读(97) 评论(0) 推荐(0) 编辑 |
||