📜  如何检查与PHP中的特定字符串的字符串开始/结束?

📅  最后修改于: 2021-11-07 08:55:24             🧑  作者: Mango

在本文中,我们将学习如何在PHP检查给定的字符串是否以给定的特定字符串开头或结尾。

我们需要使用 XAMPP、Netbeans 来运行此代码。

Input: "Geeks For Geeks"
Starting with: "G"
Output: "Geeks For Geeks Starts with String G"

在PHP 8+ 版本中,有str_starts_with()、str_ends_with()函数,它们接受两个参数,一个作为原始字符串,第二个作为要检查的字符串。

我们将学习,如何检查字符串以特定字符串开头/结尾。

方法:

  • 我们将创建一个基本的 HTML 表单来输入两个字符串,主字符串和要检查的字符串。
  • 我们将使用str_starts_with()、str_ends_with()函数验证输入。

PHP代码:创建一个文件“index.html”。 PHP”并编写以下PHP代码。

PHP



  

    
        

Input Main String

                    

Input String to be Checked

           
        
        
             
    

             

  


输入:

Input: Geeks For Geeks
String To be Checked: Geek
Type: Starts With
 
Input: Geeks For Geeks
String To be Checked: s
Type: Ends With
 
Input: Geeks For Geeks
String To be Checked: For
Type: Starts With

输出: