PHP 检查字符串是否包含括号
PHP check if string contains brackets
我只想构建一个 php 函数来检查字符串是否包含方括号和 return 布尔值,有人可以帮忙吗?
示例:
$string = "{hallo}"; // true
$string2 = "h{allo}"; //true
$string3 = "hal}{o"; //false
$string4 = "hallo{}";//false
检查这个
<?php
$string = "{hallo}";
$res = preg_match('/{\w+}/',$string);
print_r($res);
?>
我只想构建一个 php 函数来检查字符串是否包含方括号和 return 布尔值,有人可以帮忙吗?
示例:
$string = "{hallo}"; // true
$string2 = "h{allo}"; //true
$string3 = "hal}{o"; //false
$string4 = "hallo{}";//false
检查这个
<?php
$string = "{hallo}";
$res = preg_match('/{\w+}/',$string);
print_r($res);
?>