- 博客(11)
- 收藏
- 关注
原创 nginx服务器怎样去掉url中的index.php?
将location代码块嵌套在server代码块中,如下所示: server { listen 80; server_name yourdomain.com; root /home/yourdomain/www/; index index.html index.htm index.php; if (!-e $request_filename) {.
2021-01-27 04:42:53 696
原创 apacha服务器如何去掉url中的index.php?
httpd.conf配置文件中加载了mod_rewrite.so模块 AllowOverride None 将None改为 All 把下面的内容保存为.htaccess文件放到应用入口文件的同级目录下Options +FollowSymlinks -MultiviewsRewriteEngine onRewriteCond %{REQUEST_FILENAME} !-dRewriteCond %{REQUEST_FILENAME} !-fRewriteRule ^(.*)$ index.ph
2021-01-27 04:37:11 250
原创 layui select多级联动
<!DOCTYPE html><html lang="en"><head> <meta charset="UTF-8"> <title>Title</title></head><body><div class
2018-07-03 16:16:25 5701 3
转载 MySQL中concat函数(连接字符串)
MySQL中concat函数使用方法:concat(str1,str2,…) 返回结果为连接参数产生的字符串。如有任何一个参数为NULL ,则返回值为 NULL。mysql> select concat('11','22','33');+------------------------+| concat('11','22','33') |+------------------------+...
2018-06-30 14:58:25 1900 1
原创 apache 显示目录列表
DocumentRoot "C:\phpStudy\PHPTutorial\WWW" <Directory "C:\phpStudy\PHPTutorial\WWW"> Options +Indexes +FollowSymLinks +ExecCGI AllowOverride All Order allow,deny Allow from all...
2018-06-22 20:27:27 1974
原创 php使用正则表达式匹配中文数字并替换
<?phpheader("Content-type: text/html; charset=utf8");$str = "我的QQ号是43247943,身高是175厘米,体重是69.5公斤,年龄二十五岁";echo $str . '<br>';$reg = '/((0|[1-9]\d*)(\.\d+)?)|(零|一|二|三|四|五|六|七|八|九|十)(百|十|零)...
2018-06-08 11:45:13 5717
转载 php如何统计一个数组中相同元素的个数
php中的 array_count_values() 函数可以实现array_count_values() 函数用于统计数组中所有值出现的次数。本函数返回一个数组,其元素的键名是原数组的值,键值是该值在原数组中出现的次数。array_count_values(array)例如:<?php$a=array("Cat","Dog","Horse","Dog");print_r(array_cou...
2018-05-14 10:36:38 11565
原创 解决问题:form表单提交复选框数据, 只收到最后一条数据
<form action="" method="post"> <input type="hidden" name="group_id" value="{$group_id}"> <volist name='pandas' id='panda'> <tr>
2018-04-09 16:01:22 6288 1
原创 PHP中url传参
8.9 Volist标签 Volist标签主要用于在模板中循环输出数据集或者多维数组。volist标签(循环输出数据)闭合非闭合标签属性name(必须):要输出的数据模板变量id(必须):循环变量offset(可选):要输出数据的offsetlength(可选):输出数据的长度key(可选):循环的key变量,默认值为imod(可选):对key值取模,默认为2empty(可选):如果数据为空显...
2018-03-29 14:33:50 2097
原创 获取数据表中最后一条记录的
PHP方法: mysql_insert_id() /mysqli_insert_id() 函数返回上一步 INSERT 操作产生的 ID。thinkphp方法: getLastInsID()函数返回数据表中最后一条记录的id;
2018-03-28 10:25:15 9725
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人