如何在 PHP 中从字符串中提取子字符串
主题:PHP / MySQL
答案:使用 PHP substr()
函数
PHP substr()
函数可用于从字符串中获取子字符串,即字符串的一部分。 此函数采用 start 和 length 参数来返回字符串的一部分。
让我们看一个例子来了解这个函数的基本工作原理:
示例
<?php
$str = "Hello World!";
echo substr($str, 0, 5); /* Outputs: Hello */
echo substr($str, 0, -7); /* Outputs: Hello */
echo substr($str, 0); /* Outputs: Hello World! */
echo substr($str, -6, 5); /* Outputs: World */
echo substr($str, -6); /* Outputs: World! */
echo substr($str, -12); /* Outputs: Hello World! */
?>
FAQ 相关问题解答
以下是与此主题相关的更多常见问题解答: