举报投诉联系我们 手机版 热门标签 编程学
您的位置:编程学 > php format函数 PHP fnmatch() 函数

php format函数 PHP fnmatch() 函数

2023-03-21 20:18 PHP教程

php format函数 PHP fnmatch() 函数

php format函数

PHP format 函数是一个用于格式化字符串的函数,它可以将字符串中的特殊字符转换成 HTML 实体,以便在 HTML 页面中正确显示。它还可以用于将字符串中的特殊字符转换成 URL 编码,以便在 URL 中正确显示。

format 函数有三个参数:要格式化的字符串、要使用的格式和要使用的参数。格式可以是“html”、“url”或“rawurl”,其中 html 格式会将特殊字符转换成 HTML 实体,而 url 格式会将特殊字符转换成 URL 编码。

$str = "This is a string with special characters: &, <, >"; 
$formatted_str = format($str, 'html'); 
echo $formatted_str; 
// Outputs: This is a string with special characters: &, <, > 

PHP fnmatch() 函数

PHP fnmatch() 函数


PHP Filesystem 参考手册 完整的 PHP Filesystem 参考手册

定义和用法

fnmatch() 函数根据指定的模式来匹配文件名或字符串。

语法

fnmatch(pattern,string,flags)

参数 描述
pattern 必需。规定要检索的模式。
string 必需。规定要检查的字符串或文件。
flags 可选。


提示和注释

注释:该函数无法在 Windows 平台上使用。


实例

根据 shell 通配符模式来检查颜色名:

<?php
$txt = "My car is darkgrey..."
if (fnmatch("*gr[ae]y",$txt))
{
echo "some form of gray ...";
}
?>


PHP Filesystem 参考手册 完整的 PHP Filesystem 参考手册
阅读全文
以上是编程学为你收集整理的php format函数 PHP fnmatch() 函数全部内容。
声明:本站所有文章资源内容,如无特殊说明或标注,均为采集网络资源。如若本站内容侵犯了原著者的合法权益,可联系本站删除。
相关文章
© 2024 编程学 bianchengxue.com 版权所有 联系我们
桂ICP备19012293号-7 返回底部