短地址生成,全套配置教程

admin4年前php1096

nginx 配置

location / {

rewrite  ^(.*)$  /index.php?s=/$1  last;

}



code 

rotoo.top.7z


相关文章

面向过程的php sqlhelp

<?php $servername = "localhost"; $username = "root"; $...

MySQL 及 SQL 注入

所谓SQL注入,就是通过把SQL命令插入到Web表单递交或输入域名或页面请求的查询字符串,最终达到欺骗服务器执行恶意的SQL命令。我们永远不要信任用户的输入,我们必须认定用户输入的数据都是不安全的,我...

php过滤emod与特殊字符

<?php  function xml_entities($string) { //过滤emod $ts_zifu= json_encode($st...

数组问题整理

$arr[]           //用于收集子数组;serialize($arr)&nb...

PHP生成json,javascript解析json

生成json<?php $arr=array();  //定义空数组 $one="111"; $two="222"; arra...

mysql批量添加数据

$conn=new sqlhelper;for ($i = 0; $i <1000 ; $i++) {$sql="insert into system_user(user_shenfe...

发表评论    

◎欢迎参与讨论,请在这里发表您的看法、交流您的观点。