PHP 日期验证:改进的方法
问题:
我遇到困难使用正则表达式 (regex) 实现 PHP 日期验证。我当前的正则表达式无法正常运行。你能提供更可靠的解决方案吗?
答案:
与其依赖正则表达式,更有效的方法是利用 PHP 的 checkdate 函数。这是一个简化的示例:
<code class="php">$test_date = '03/22/2010'; $test_arr = explode('/', $test_date); if (checkdate($test_arr[0], $test_arr[1], $test_arr[2])) { // Valid date ... }</code>
此方法可靠,并确保输入符合 MM/DD/YYYY 格式。
为了提高准确性,您可以实施更彻底的验证流程:
<code class="php">$test_date = '03/22/2010'; $test_arr = explode('/', $test_date); if (count($test_arr) == 3) { if (checkdate($test_arr[0], $test_arr[1], $test_arr[2])) { // Valid date ... } else { // Problem with dates ... } } else { // Problem with input ... }</code>
通过验证数组大小并使用checkdate,可以更有效地处理无效输入。
以上是如何在不使用正则表达式的情况下执行准确的 PHP 日期验证的详细内容。更多信息请关注PHP中文网其他相关文章!