php教程

  • php的增删改基础教程

    增加数据<?phpinclude("linksql.php");$add="inset into new1(table,content) values(&#39;qwerty&#39;,&#39;qasedfdssddsd&#39;)";if($coon->query($add))echo "插入成功";elseecho "插入失败".$coon->error;conn-&gt...

    1年前
  • Nginx禁止指定目录执行PHP

    在PHP开发中,某些目录的PHP文件不需要用户执行访问,为了安全我们是可以直接禁止访问的。这里我的站长站就分享了一篇Nginx禁止指定目录执行PHP ,可以轻松禁止某个目录执行脚本。location ~* ^/(uploads|templets|data)/.*.(php|php5)$ { return 444; ...

  • file_get_contents函数访问大文件超时解决方法

    file_get_contents函数在访问大文件时,会报错504超时,下面分享下我的站长站的解决方法。$opts = array(&#39;http&#39;=>array(&#39;method&#39;=>"GET",&#39;timeout&#39;=>60,)); $context = stream_context_create($opts); $html =file_get_content...

    1年前
  • php上传大文件报错Internal Server Error

    php上传大文件报错Internal Server Error,导致文件上传失败。接下来我们就解决这个问题。Internal Server ErrorThe server encountered an internal error or misconfiguration and was unable to complete your request.Please contact the server ...

    1年前
  • file_get_contents函数判断链接是否失效

    在nginx环境中无法使用get_headers函数方法,所以我的站长站这次分享的是用php的file_get_contents函数来判断链接是否失效。原理就是通过file_get_contents函数远程访问链接,判断返回的$http_response_header的HTTP 标头。file_get_contents代码如下:fu...

  • php获取linux服务器进程/内存/硬盘使用情况

    php获取linux服务器使用状态情况的代码,可以获取进程、内存、硬盘使用情况等等数据.代码如下:function get_used_status(){ $fp = popen(&#39;top -b -n 2 | grep -E "^(Cpu|Mem|Tasks)"&#39;,"r");//获取某一时刻系统cpu和内存使用情况 $rs = ""; ...

  • PHP报错Warning: Unknown: Input variables exceeded 1000

    PHP报错:Warning: Unknown: Input variables exceeded 1000. To increase the limit change max_input_vars in php.ini. in Unknown on line 0原因是一次性提交表单数据或输入的变量数量超过默认1000个的限制了。解决方法我们只需要修改下这个默认10...

    1年前
  • get_headers函数判断链接是否有效

    get_headers函数get_headers() 是PHP系统级函数,get_headers函数可以返回服务器响应HTTP标头数组。如果失败则回到 FALSE,并发出一条 E_WARNING 级别的错误信息,我们可以利用这点去判断远程文件是否存在。函数定义array get_headers ( string $url [, i...

  • 聚合热搜热榜PHP接口API源码

    API说明聚合热搜热榜PHP接口API源码,本源码接口均抓取采集各大官网数据。PHP环境为5.6或以上,解压压缩包里面的hotlist.php文件到网站目录然后输入参数输入?type参数内容;zhihu(知乎热榜) weibo(微博热搜) baidu(百度热点) history(历史上的今天) bilih...

  • php单文件上传示例代码

    <?phpheader("Content-Type:text/html; charset=gb2312");if(isset($_POST[&#39;submit&#39;])){$upfiles = new Upload();$upfiles->upload_file();}class Upload{public $upload_name;//上传文件名public $upload_tmp_name;//上传临时文件名public...