php
PHP实现首字母(截取第一个汉字)生成头像图片
目录设计思路完整代码总结会员系统中,用户如果不上传自定义头像,使用固定图片作为头像未免有些单调。php可以实现生成用户名首字母或者第一个汉字(第一个字符)的头像图片,不使用javascript第三方API,第三方虽然[详细]
2024-08-10 10:30 分类:开发PHP避免SQL注入的常用方法
目录1.使用参数化查询2.输入验证和过滤filter_var 函数过滤用户输入的数据htmlspecialchars() 转换为HTML实体mysqli_real_escape_string3.限制数据库用户的权限4.总结在开发php网站时,经常需要和数据库交互来存储和[详细]
2024-08-10 10:20 分类:开发PHP-CLI命令行模式开发从新手到高手
目录php-cli应用场景:1.多线程应用2.定时执行php程序3.开发桌面程序4.编写PHP的shell脚本PHP CLI的安装PHP-CLI技巧要点运行PHP CLI命令行选项获取命令行参数标准输入输出PHP配置文件代码仅在CLI下使用超时时间buffe[详细]
2024-08-10 10:19 分类:开发PHP使用OCR技术识别图片中的文字(无需接口)
目录安装Tesseract OCR安装php扩展导入必要的模块读取图片对图片进行预处理使用Tesseract进行OCR识别总结tesseract-ocr是一个流行的开源OCR引擎库,它使用C++编写。 PHP作为一种流行的服务器端语言,也提供了一些ocr[详细]
2024-08-10 10:18 分类:开发PHP curl get post 请求的封装函数示例【get、post、put、delete等请求类型】
一、get //get请求 function getUrl($url, $header = []) { $ch = curl_init(); curl_setopt($ch, CURLOPT_URL, $url);[详细]
2023-04-18 10:18 分类:开发PHP - manage server
Recently I rented a Virtual Machine for my experiments and works, and I would like to create a simple way for the final client to manage emails, databases, etc. So, since I\'m using PHP and I\'m awa开[详细]
2023-04-13 10:06 分类:问答Format exec() system() output
I need to the get the output of a command on unix on a webpage, in a tabular format. This is what I used to do :[详细]
2023-04-13 10:05 分类:问答Got issue with Swift Mailer Not sending messages
I have an issue with swift mailer, it is not sending message to the user I extracted the library to inc folder in my website and created the following message for swift mailer to send:[详细]
2023-04-13 10:03 分类:问答PHP variable inside Google Analytics Code
I have the following code if ($form_id == 1) { $form_name = \"Test form 1\"; } elseif ($form_id == 2) { $form_name = \"General Enquiries\";[详细]
2023-04-13 10:03 分类:问答Magento product edit screen, categories not appearing
I have a magento store (ver 1.5.1.0) with a lot of categories, the categories have been added using the following category duplication script -[详细]
2023-04-13 09:57 分类:问答