我试图搜索,但我无法通过Parse错误解决问题

时间:2017-08-08 05:41:37

标签: php

我是PHP新手,我真的需要帮助解决此错误。它让我整晚都清醒,试着想出可能是问题,但我无法做到。

  

解析错误:语法错误,意外' function_construction'   (T_STRING),期待函数(T_FUNCTION)   第6行的C:\ xampp \ htdocs \ amimo \ includes \ database.php

这是我的代码:

<?php

function strip_zeros_from_date($marked_string = "") {
    // first remove the marked zeros
    $no_zeros = str_replace('*'), '', $no_zeros);
    $cleaned_string = str_replace('*0', '' , $no_zeros);
    return $cleaned_string;
}

function redirect_to($location = NULL) {
    if ($location!: = NULL) {
        header("location :{$location}");
        exit;
    }
}

function out_message($message = "") {
    if (! empty($message)) {
        return "<p class=\"message\">{$message}</p>";
    } else {
        return"";
    }
}

?>

1 个答案:

答案 0 :(得分:2)

你在这一行有问题 -

$no_zeros =str_replace('*'),'' , $no_zeros);

应该是

 $no_zeros =str_replace('*','' , $no_zeros);

也在这一行

if($location!: = NULL){

应该是

if($location != NULL){

也在这一行

return"<p class=\"message\">{$message} </p>";

应该是

return  "<p class=\"message\">{$message} </p>";

也在这一行

return"";

应该是

return "";