php
龙小王
这个作者很懒,什么都没留下…
展开
-
(CentOS7)PHP应用Tesseract文字识别中文
(CentOS7)PHP文字识别Tesseract原创 2022-11-03 20:48:47 · 843 阅读 · 0 评论 -
阿里云虚拟服务器thinkphp6官方Apache伪静态无效的解决方法
一.替换规则 <IfModulemod_rewrite.c> Options +FollowSymlinks -Multiviews RewriteEngine On RewriteCond %{REQUEST_FILENAME} !-d RewriteCond %{REQUEST_FILENAME} !-f RewriteRule ^(.*)$ index.php/$1 [QSA,PT,L] </I...原创 2022-04-05 07:30:18 · 1024 阅读 · 0 评论 -
php分页查询sqlserver2010数据库
$page =>第几页 $limit=>每页条数$sql = "select 地区,时间,类别,标题,网站,网址,作者,日期,文章 from DailyData where 库名=? and 日期=? order by 时间 desc offset (({$page}-1)*{$limit}) rows fetch next {$limit]} rows only";...原创 2021-01-31 09:07:31 · 169 阅读 · 0 评论 -
mysql数据库软件navicat设置外键报错处理
项目要求:mysql数据库表a中的字段tid设置外键关联表中的字段id(自增格式)。设置外键时,发现的问题:1、两个表的选项 引擎名称必须选择“InnoDB”。如果下拉选项中没有这个名称,是被my.ini 禁止了。2、两个表的格式要一致,如都是Int类型。表b中不能有数据,否则给表a设置外键报错。3、表a外键选项 删除时选择“SET NULL”,表示表b中的数据删除,表a中ti原创 2017-12-10 08:42:55 · 1808 阅读 · 0 评论 -
使用mysql数据库进行左右连接查询的时候出现错误提示 Column 'id' in where clause is ambiguous
使用mysql数据库进行左右连接查询的时候出现错误提示 Column 'id' in where clause is ambiguous。这个错误in where clause is ambiguous多半是因为多表查询的时候几个表中同时出现了某个相同的列名,而在查询条件WHERE后面又没有指定是那个表,而引起的又或者是查询结果里面有两个相同的列名,而没有指定是哪个表使用的时候可以这样原创 2018-02-02 18:26:25 · 48068 阅读 · 1 评论 -
php面向对象方法实例(详细)
https://blog.csdn.net/hj960511/article/details/51479755一、php面向对象的简单列子 以人为列子:<?phpheader("Content-type: text/html; charset=utf-8");class person{//下面是人的成员属性var $name;//人的名字var $sex;//人的性别var ...转载 2018-07-04 08:43:05 · 1749 阅读 · 0 评论 -
phpstudy中php 5.6跨域设置
一般来说 配置 header("Access-Control-Allow-Credentials: true"); 就能解决问题在用 phpStudy继承环境 php版本为php-5.6.27-nts 时,发现这样的方式解决不了跨域问题,在需要在php.ini 中将 always_populate_raw_post_data = -1 这句打开--------------------- 作...转载 2019-01-29 22:32:03 · 3657 阅读 · 2 评论 -
Windows下为PHP安装redis扩展
1.使用phpinfo()函数查看PHP的版本信息,这会决定扩展文件版本。WINDOW版redis 7.0-7.2下载地址 :https://windows.php.net/downloads/pecl/releases/redis/参考以下操作看就可以安装php7.0.12+redius了。下面方法来源网络,正常运行。参考:https://blog.csdn.net/qq_37...原创 2019-04-13 10:01:26 · 237 阅读 · 0 评论 -
composer自动加载一个文件后必须执行命令composer dump-autoload
"autoload": { "classmap": [ "database" ], "psr-4": { "App\\": "app/" }, "files":[ "app/Common/function.php", "a...转载 2019-04-27 16:45:31 · 8084 阅读 · 0 评论