Warning: file_get_contents(/data/phpspider/zhask/data//catemap/2/jquery/74.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Php Laravel/Carbon中的多重时间分区_Php_Datetime_Laravel_Php Carbon - Fatal编程技术网

Php Laravel/Carbon中的多重时间分区

Php Laravel/Carbon中的多重时间分区,php,datetime,laravel,php-carbon,Php,Datetime,Laravel,Php Carbon,我想知道这是否可能,所以假设我有一个这样的模型: MyModel SomeDate - Carbon 现在,我还为当前用户设置了一个时区,如下所示: User MyTimezone 数据库中存储的时区始终以UTC格式存储(以确保所有内容一致),并且输出的日期应始终格式化为特定的时区(但每个用户的时区不同),例如User1为美国/芝加哥,User2为美国/丹佛 是否有一种方法可以在输出之前自动将每个Carbon实例的时区格式化为给定的时区,或者我必须循环收集并相应地设置每个时区 设

我想知道这是否可能,所以假设我有一个这样的模型:

MyModel
   SomeDate - Carbon
现在,我还为当前用户设置了一个时区,如下所示:

User
   MyTimezone
数据库中存储的时区始终以UTC格式存储(以确保所有内容一致),并且输出的日期应始终格式化为特定的时区(但每个用户的时区不同),例如User1为美国/芝加哥,User2为美国/丹佛

是否有一种方法可以在输出之前自动将每个Carbon实例的时区格式化为给定的时区,或者我必须循环收集并相应地设置每个时区

设置
app.timezone
无效,因为它还会导致碳实例保存到
app.timezone
时区中的数据库中,而数据库中的所有日期都应以UTC为单位,因此我失去了一致性

我目前在应用程序配置中将
app.timezone
设置为UTC,但我还被迫在输出之前将所有碳实例转换为正确的时区。有没有更好的办法,也许是在碳变成一根弦之前,先把执行过程套住,然后在那里执行呢

编辑:

我尝试过的事情:

覆盖setAttribute和getAttribute:

public function setAttribute($property, $value) {
    if ($value instanceof Carbon) {
        $value->timezone = 'UTC';
    }

    parent::setAttribute($property, $value);
}

public function getAttribute($key) {
    $stuff = parent::getAttribute($key);

    if ($stuff instanceof Carbon) {
        $stuff->timezone = Helper::fetchUserTimezone();
    }

    return $stuff;
}
覆盖asDateTime:

protected function asDateTime($value)
{
    // If this value is an integer, we will assume it is a UNIX timestamp's value
    // and format a Carbon object from this timestamp. This allows flexibility
    // when defining your date fields as they might be UNIX timestamps here.
    $timezone = Helper::fetchUserTimezone();

    if (is_numeric($value))
    {
        return Carbon::createFromTimestamp($value, $timezone);
    }

    // If the value is in simply year, month, day format, we will instantiate the
    // Carbon instances from that format. Again, this provides for simple date
    // fields on the database, while still supporting Carbonized conversion.
    elseif (preg_match('/^(\d{4})-(\d{2})-(\d{2})$/', $value))
    {
        return Carbon::createFromFormat('Y-m-d', $value, $timezone)->startOfDay();
    }

    // Finally, we will just assume this date is in the format used by default on
    // the database connection and use that format to create the Carbon object
    // that is returned back out to the developers after we convert it here.
    elseif ( ! $value instanceof DateTime)
    {
        $format = $this->getDateFormat();

        return Carbon::createFromFormat($format, $value, $timezone);
    }

    return Carbon::instance($value);
}

如果我理解正确,您试图实现的是将时区从A格式转换为B格式并发送给用户,其中A格式存储在数据库中,B格式在从数据库检索记录后转换为

这里有一个简单的方法

在需要转换的模型中,例如
User
MyModel
,在模型中添加一个函数:

public function getConversionAttribute()
{
    $conversion = Convert($this->SomeDate);
    //Convert is the customized function to convert data format
    //SomeDate is the original column name of dates stored in your database
    return $conversion;
}
现在,如果您使用
$User=User::find(1)
查询用户模型或MyModel,您现在可以通过使用
$User->conversion
访问转换属性来获取转换日期

干杯

但是,以这种方式添加的属性不会包含在转换的数组中。您需要在模型中添加另一个函数

public function toArray()
{
    $array = parent::toArray();
    //if you want to override the original attribute
    $array['SomeDate'] = $this->conversion;
    //if you want to keep both the original format and the current format
    //use this: $array['Conversion'] = $this->conversion;
    return $array;
}
一般版本:

public function toArray() {
    $array = parent::toArray();
    //if you want to override the original attribute
    $dates = $this->getDates();

    foreach ($dates as $date) {
        $local = $this->{$date}->copy();
        $local->timezone = ...
        $array[$date] = (string)$local;
    }
    //if you want to keep both the original format and the current format
    //use this: $array['Conversion'] = $this->conversion;
    return $array;
}

在我的应用程序中遇到了同样的问题,远程网站将以UTC存储日期,我必须根据登录用户显示实际日期,我提出了覆盖Laravel Elount模型的方法

只需扩展
照明\数据库\雄辩\模型
,如下所示:

<?php namespace Vendor\Package;

use Illuminate\Database\Eloquent\Model as EloquentModel;

class Model extends EloquentModel
{

    /**
    * Return a timestamp as a localized DateTime object.
    *
    * @param  mixed  $value
    * @return \Carbon\Carbon
    */
    protected function asDateTime($value)
    {
        $carbon = parent::asDateTime($value);
        // only make localized if timezone is known
        if(Auth::check() && Auth::user()->timezone)
        {
            $timezone = new DateTimeZone(Auth::user()->timezone);
            // mutates the carbon object immediately
            $carbon->setTimezone($timezone);
        }

        return $carbon;
    }
    /**
    * Convert a localized DateTime to a normalized storable string.
    *
    * @param  \DateTime|int  $value
    * @return string
    */
    public function fromDateTime($value)
    {
        $save = parent::fromDateTime($value);

        // only make localized if timezone is known
        if(Auth::check() && Auth::user()->timezone)
        {
            // the format the value is saved to
            $format = $this->getDateFormat();

            // user timezone
            $timezone = new DateTimeZone(Auth::user()->timezone);

            $carbon = Carbon::createFromFormat($format, $value, $timezone);
            // mutates the carbon object immediately
            $carbon->setTimezone(Config::get('app.timezone'));

            // now save to format
            $save = $carbon->format($format);
        }

        return $save;
    }
}

只是一个想法,但将时间数据传递给JS,让JS为您进行计算。问题是,如果我在模型上调用
->toArray()
,我想要的值,例如
start\u time
仍在数据库时区中。请尝试以下操作:公共函数getConversionAttribute(){$this->SomeDate=Convert($this->SomeDate);//Convert是转换数据格式的自定义函数//SomeDate是数据库中存储的日期的原始列名return$this->SomeDate;}它应该根据需要更改原始格式。只要您不使用
$this->save()
将其保存到数据库中,数据库条目就不会受到影响。问题出在toArray()。以这种方式添加的属性将不包括在转换的数组中。但是你可以使用
$this->conversion
来访问它们,很酷,我刚刚对你的函数做了一个更通用的版本,我现在接受你的,我还将添加通用的版本。