PHP sscanf()

王林
发布: 2024-08-29 12:55:39
原创
898 人浏览过

sscanf() 是 PHP 中的预定义函数,它在按照所需格式解析输入字符串后返回已解析的输入字符串。它接受 2 个参数的输入并为我们提供所需的数组,在其他情况下,当传递其他参数(例如可选参数)时,解析的数据将存储在其中。当说明符数量多于包含这些变量的变量时,它会抛出错误,并且如果存在比变量低的说明符,则额外的变量将获取 NULL。

开始您的免费软件开发课程

网络开发、编程语言、软件测试及其他

PHP sscanf() 语法

下面给出的是 PHP sscanf() 的语法:

雷雷

输入参数:

1。 input_string:这是要读取的输入字符串。

2。格式: 我们可以根据需要指定以下列表的格式:

  • %%: 此格式将采用百分号。
  • %c: 此格式根据所需的 ASCII 值返回字符。
  • %d: 此格式适用于带符号的十进制值。 (可以是零、负数或正数)
  • %e: 此格式返回小写的科学计数法。 (例如 1.2e+2)
  • %u: 用于表示等于或大于零的无符号十进制数。
  • %f: 用于表示浮点数。
  • %o: 用于表示八进制数。
  • %s: 表示字符串格式。
  • %x: 这代表十六进制数字的小写字母。
  • %X: 这代表十六进制数字的大写字母。

还有一些附加的格式值放置在 % 符号和我们给出的字母之间。 (例如%0.3f)

  • +(这会强制在数字开头同时包含 + 和 – 值,并且默认情况下仅标记负值)。
  • ‘(这描述了用作填充的内容,并且空格是此处的默认值。这应该与宽度说明符一起使用。例如:%x30s 使用 x 作为填充)。
  • –(左边的这个将为我们提供变量值)。
  • [0-9](这给出了变量值所保持的最小宽度)。
  • 。 [0-9](这描述了十进制数字的总数或字符串的最大长度)。
注意: 如果使用多种格式,则遵循的顺序必须与上面给出的顺序相同。
  • arg1: 这是一个可选参数,也是我们存储数据的第一个变量。
  • arg2: 这也是可选的,是我们存储数据的第二个变量。
  • arg++: 这是可选的,代表我们继续存储数据的连续变量。

返回值:这里可能发生两种情况:

  • 如果只有 2 个值作为此函数的输入参数,则数据将以数组的形式返回。
  • 如果传递了其他可选参数,则解析后的数据将存储在其中。
  • 如果有多个说明符超出了可以包含它们的变量,则会抛出错误。
  • 如果说明符少于它们可以包含的变量,则 NULL 将分配给这些变量。
  • 如果存在的说明符多于预期格式,则将返回
  • -1。

PHP sscanf() 示例

下面给出了提到的示例:

示例#1

代码:

雷雷

输出:

PHP sscanf()

在此示例中,我们根据需要指定文本。然后使用 sscanf 函数并指定代表我们输入字符串的正确格式。因此,在输出中,确切的字符串显示为数组。仅当格式与数据匹配时才会如此。

示例#2

代码:

雷雷

输出:

PHP sscanf()

在此示例中,我们将展示如何检查和显示产品信息,例如其唯一制造 ID 和到期日期。因此,在第一个参数中,我们获取 ID 信息并以 %d 格式解析它。接下来,我们将获取产品的生产日期和有效期,并使用 sscanf 函数解析所需的格式。然后将所有解析出来的东西用一句话展示出来。这里可以添加多个东西来显示我们想要的信息。

Example #3

Code:

<?php
// Fetching designer info and to generate DressInfo entry
$design = "13\tCoco Chanel";
$str = sscanf($design, "%d\t%s %s", $ID, $firstname, $lastname);
// Displaying all the above details after formatting
echo "<author id='$ID'>
<firstname>$firstname</firstname>
<surname>$lastname</surname>
</author>\n";
?>
登录后复制

Output:

PHP sscanf()

In this example we are using sscanf function to first parse the ID and name of the designer. Then displaying the same in HTML format by splitting the names into first name and last name.

Example #4

Code:

<?php
// We are initializing the string here
$arr = "Character PHP and number 7";
// Parsing the input string according to different format
$format = sscanf($arr,"%s %c%c%c %s %s  %d");
print_r($format);
?>
登录后复制

Output:

PHP sscanf()

In the above example we are first initializing the string as required and this time including a few character sets in combination with strings. The same we are parsing using the sscanf function.

Conclusion

As seen above in all the examples, sscanf function in PHP is basically used to parse any type of the input string as per the requirements. There are a few cases where this function shows inefficiency to parse the strings, where there may be incorrect output when we try to parse a tab delimited string also having normal spaces in between. It also does not give the expected output if in the code there is a file name with its extension where it finds difficult to separate the two in presence of a “.”.

以上是PHP sscanf()的详细内容。更多信息请关注PHP中文网其他相关文章!

相关标签:
php
来源:php
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板
关于我们 免责声明 Sitemap
PHP中文网:公益在线PHP培训,帮助PHP学习者快速成长!