PHP - 为什么包含来自另一个文件的函数失败?

时间:2011-09-24 20:52:52

标签: php function include

我正在尝试将一个PHP文件中的函数包含到另一个PHP文件中,并使用带参数的函数并获取返回值。一切都很好,直到我运行PHP死亡的功能。我该如何解决这个问题?

timestamp_reader.php:

<?php
function get_time($timestamp){
    $year = substr($timestamp, 0, 4);
    $month = substr($timestamp, 4, 2);
    if(substr($month, 0, 1) == "0")
        $month = substr($month, 1, 1);
    $day = substr($timestamp, 6, 2);
    if(substr($day, 0, 1) == "0")
        $day = substr($day, 1, 1);
    $hour = substr($timestamp, 8, 2);
    if(substr($hour, 0, 1) == "0")
        $hour = substr($hour, 1, 1);
    $hour = intval($hour);
    if($hour > 12){
        $hour = $hour - 12;
        $pm = true;
    }else $pm = false;
    $minute = substr($timestamp, 10, 2);
    if(substr($day, 0, 1) == "0")
    $day = substr($day, 1, 1);
    if($pm) $minute .= " PM";
    else $minute .= " AM";

    return $month . "/" . $day . "/" . $year . " " . $hour . ":" . $minute;
}
?>

我要访问此功能的文件(注意,它位于不同的目录中):

...some PHP code before this...
include "/project/includes/timestamp_reader.php";
while($row=mysql_fetch_array($result)){
    $msg = $row['message'];
    $timestamp = $row['timestamp'];
    $time = get_time($timestamp);
    echo "<p><center>" . $time . " " . $msg . "</center></p>";
}

我想把它弄清楚并将其用于各种功能,所以如果可能的话,我不必每次都输入它们。另外,我需要类似的东西来创建项目范围的变量。

无论如何,感谢任何和所有的帮助!

3 个答案:

答案 0 :(得分:1)

你怎么避免重新发明轮子? ..特别是如此错误的一个:

答案 1 :(得分:0)

尝试使用require(),如果路径错误则失败,我敢打赌是这种情况。

答案 2 :(得分:0)

为什么不在PHP中使用date() function

例如,

$timestamp = "1316922240";
echo date("m-j-Y", $timestamp);

将立即根据该时间戳打印出09-24-2011 - 如果时间戳是昨天,则回显的日期将是昨天。