<?php
/**
* 字符串处理函数:
* parse_url 解析URL。返回其组成部分
*/
/*
$url="http://www.lantianwang.com/admin/index.php?name=chen&a=add";
$arr=parse_url($url);
print_r($arr);//输出:Array ( [scheme] => http [host] => www.lantianwang.com [path] => /admin/index.php [query] => name=chen&a=add )
echo "<br/>".parse_url($url,PHP_URL_SCHEME);//输出:http
echo "<br/>".parse_url($url,PHP_URL_HOST);//输出:www.lantianwang.com
echo "<br/>".parse_url($url,PHP_URL_PATH);//输出:/admin/index.php
echo "<br/>".parse_url($url,PHP_URL_QUERY);//输出:name=chen&a=add
*/ /*urlencode() url编码:
*urldecode() 解码,已编码的内容
* \*/
/*
$str="视频教程PHP课程&divcss课程";
echo "<a href='5.php?h=".urlencode($str)."'/>蓝天网";
echo $_GET['h'];//输出:视频教程PHP课程&divcss课程
*/
/*
$str2="蓝天网视频教程";
echo urlencode($str2);
echo "<br/>";
echo urldecode(urlencode($str2));
*/ /*htmlentities()讲字符串转化为HTML实体。1.参数:操作内容,
2:转换规则: ENT_COMPAT(转换双引号)
ENT_QUOTES(转换单双引号) ENT_NOQUOTES(不转换任何引号)
*
* */
/*
$str4='<h1>bbs.lantianwang.com</h1>';
echo $str4;
echo htmlentities($str4); $str4='<h1>bbs.lantianwang.com</h1>"PHP DIV"';
echo htmlentities($str4);//转换的字符里面双引号也被转换
*/
/*
htmlspecialchars(); //不转换中文;
*/
/*
$str4='<h1>bbs.lantianwang.com</h1>"中国"';
echo htmlspecialchars($str4);//输出:<h1>bbs.lantianwang.com</h1>"中国"
*/ echo $_GET['uname'];
?>
<form action="" method="get">
输入姓名:<input type="text" name="uname">
<input type="submit" value="提交">
</form>

  

005——php字符串中的处理函数(四)的更多相关文章

  1. 002——php字符串中的处理函数(一)

    <?php /** * 字符串处理函数: * 一.PHP处理字符串的空格: * strlen 显示字符串长度 * * trim 对字符串左右空格删除: * ltrim 对字符串左侧空格删除 * ...

  2. 008——php字符串中的处理函数(七)

    <?php /** *字符串处理函数(六)get_magic_quotes_runtime set_magic_quotes_runtime strip_tags *get_magic_quot ...

  3. 006——php字符串中的处理函数(五)

    <?php /** * 一.addslashes() 在预定义字符串前添加反斜杠 * * stripslashes() 把转义字符串前的反斜杠删除 * get_magic_quotes_gpc( ...

  4. 007——php字符串中的处理函数(六)

    <?php /** * 一.addslashes() 在预定义字符串前添加反斜杠 * * stripslashes() 把转义字符串前的反斜杠删除 * get_magic_quotes_gpc ...

  5. Mysql获取字符串中的数字函数方法和调用

    )) ) BEGIN ; ) default ''; set v_length=CHAR_LENGTH(Varstring); DO )) )) ) THEN )); END IF; ; END WH ...

  6. java中的string字符串中的trim函数的作用

    去掉字符串首尾空格 防止不必要的空格导致错误public class test{ public static void main(String[] args) { String str = " ...

  7. 字符串中的TOUPPER函数

    std::string& str_toupper(std::string& s) { std::transform(s.begin(), s.end(), s.begin(), []( ...

  8. 从Win32程序中的主函数中获取命令行参数

    在标准C或者Win32控制台程序的main函数中,它们都有两个参数:"argc" 和 "argv",如下所示: int main(int argc, char ...

  9. 字符串 映射相应的 函数 字符串驱动技术—— MethodAddress , MethodName , ObjectInvoke

    http://blog.csdn.net/qustdong/article/details/7267258 字符串驱动技术—— MethodAddress , MethodName , ObjectI ...

随机推荐

  1. BBS - 文章详细页、点赞、踩灭

    一.文章详细页 文章详细页:1.链接:<div><h5><a href="/blog/{{ article.user.username }}/articles/ ...

  2. timedatectl — Control the system time and date

    timedatectl --help 的执行结果如下: timedatectl [OPTIONS...] COMMAND ... Query or change system time and dat ...

  3. python 实现的比特币代码 及 加密货币学习线路图及书籍资料

    http://www.pycoind.org/ https://github.com/samrushing/caesure https://bitcointalk.org/index.php?topi ...

  4. [py][mx]django实现课程机构排名

    如果是第一次做这个玩意,说实话,确实不知道怎么弄, 做一次后就有感觉了 此前我们已经完成了: 分类筛选 分页 这次我们做的是 课程机构排名 知识点: - 按照点击数从大到小排名, 取出前三名 hot_ ...

  5. POJ2992:Divisors(求N!因子的个数,乘性函数,分解n!的质因子(算是找规律))

    题目链接:http://poj.org/problem?id=2992 题目要求:Your task in this problem is to determine the number of div ...

  6. 史上最全的MonkeyRunner自动化测试从入门到精通(3)

    原文地址https://blog.csdn.net/liu_jing_hui/article/details/60956088 MonkeyRunner复杂的功能开始学习 (1)获取APK文件中ID的 ...

  7. monkey基础学习

    原文地址https://blog.csdn.net/beyond_f/article/details/78543070 一.Monkey测试简介 Monkey测试是Android平台自动化测试的一种手 ...

  8. ACM ICPC, Amman Collegiate Programming Contest (2018) Solution

    Solution A:Careful Thief 题意:给出n个区间,每个区间的每个位置的权值都是v,然后找长度为k的区间,使得这个区间的所有位置的权值加起来最大,输出最大权值, 所有区间不重叠 思路 ...

  9. hdu5102 枚举每条边的长度

    题意 给了 一颗 有 100000 个节点的树, 他们构成的边有 n*(n-1)/2 种. 每条边有一个长度,长度排序后 取前K条的 和, 枚举每条长度为1 的边 放进队列,然后通过成都为1 的表去 ...

  10. db2,oracle,mysql ,sqlserver限制返回的行数

    不同数据库限制返回的行数的关键字如下: ①db2 select * from table fetch first 10 rows only; ②oracle select * from table w ...