📅  最后修改于: 2022-03-11 14:50:18.691000             🧑  作者: Mango
#Program to check if string "check" comes at the begining of the string
$str="checking1234"
if ( $str.startswith("check") )
{
echo "String $str starts with check"
}