【发布时间】:2013-12-03 19:45:22
【问题描述】:
我的 php 表单有问题,在您填写表单并单击提交按钮后,您收到一个错误
---> 致命错误:调用未定义函数:str_ireplace()
我不知道它发生了什么:(非常感谢帮助
这是部分代码:
<?php
$headers = 'Content-type: text/html; charset=UTF-8' . "\r\n" .
// Set email variables
$email_to = 'office@victum.sk';
$email_subject = 'Form submission';
// Set required fields
$required_fields = array('fullname','firma','telefon','email','comment');
// set error messages
$error_messages = array(
'fullname' => 'Prosím zadajte krstné meno.',
'firma' => 'Prosím zadajte názov firmy.',
'telefon' => 'Prosím zadajte kontakt.',
'email' => 'Prosím zadajte správnu formu email adresy.',
'comment' => 'Prosím zadajte poznámku pre pokračovanie.'
);
// Set form status
$form_complete = FALSE;
// configure validation array
$validation = array();
// check form submittal
if(!empty($_POST)) {
// Sanitise POST array
foreach($_POST as $key => $value) $_POST[$key] = remove_email_injection(trim($value));
// Loop into required fields and make sure they match our needs
foreach($required_fields as $field) {
// the field has been submitted?
if(!array_key_exists($field, $_POST)) array_push($validation, $field);
// check there is information in the field?
if($_POST[$field] == '') array_push($validation, $field);
// validate the email address supplied
if($field == 'email') if(!validate_email_address($_POST[$field])) array_push($validation, $field);
}
// basic validation result
if(count($validation) == 0) {
// Prepare our content string
$email_content = 'New Website Comment: ' . "\n\n";
// simple email content
foreach($_POST as $key => $value) {
if($key != 'submit') $email_content .= htmlspecialchars($key) . ': ' . htmlspecialchars($value) . "<br>\n";
}
// if validation passed ok then send the email
mail($email_to, $email_subject, $email_content, $headers);
// Update form switch
$form_complete = TRUE;
}
}
function validate_email_address($email = FALSE) {
return (preg_match('/^[^@\s]+@([-a-z0-9]+\.)+[a-z]{2,}$/i', $email))? TRUE : FALSE;
}
function remove_email_injection($field = FALSE) {
return (str_ireplace(array("\r", "\n", "%0a", "%0d", "Content-Type:", "bcc:","to:","cc:"), '', $field));
}
?>
【问题讨论】:
-
您使用哪个 PHP 版本?
-
我忘记了 - - - > 这是表格 - - - > 请你自己试试看oila.sk/kontakt.php
-
查看
str_ireplace的手册,支持的 PHP 版本。然后切换供应商。 -
关于您的电子邮件验证正则表达式:emailtester.pieterhordijk.com/test-pattern/Nzg
-
这是我正在使用的 PHP 版本
标签: php forms undefined fatal-error