欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

php代码片段

程序员文章站 2022-05-01 20:07:13
...
1. PHP网址 URL拼接

$_SERVER['QUERY_STRING'] 获取获取当前url的所有querystring

parse_str and http_build_query:

parse_str($queryString, $params);

foreach ($params as $key => $term)

$these = array_diff_assoc($params, array($key => $term));

printf("%s
\n", http_build_query($these), $term);

Example output:

a

b

c

参考 http://*.com/questions/8609163/php-retrieve-keys-from-query-string-for-each-key-create-url-removing-that-key

2.php 获取当前url

$url_this = "http://".$_SERVER ['HTTP_HOST'].$_SERVER['PHP_SELF'];

3.strtotime("-1 week"), strtotime("-n days");可以很方便的获取当前日期的前n天、周、月的时间戳

相关标签: php代码片段