PHP脚本显示的日期和时间与笔记本电脑的日期和时间不同,我希望脚本显示我的日期和时间

时间:2020-06-16 09:11:50

标签: php date time timezone

这是我在日期和时间上的配置文件。

请,我还可以在哪里进行编辑以从PC上获取日期和时间?

$config['time_reference'] = 'local';

所以我有此脚本可以打印报告,但日期和时间与我的PC日期和时间不匹配。下面的代码

 <div class="panel-body">
                    <div id="printableArea" style="margin-left:2px;">
                        <div class="text-center">
                            {company_info}
                            <h3> {company_name} </h3>
                            <h4 >{address} </h4>
                            {/company_info}
                            <h4> <?php echo display('print_date') ?>: <?php echo date("d/m/Y h:i:s"); ?> </h4>
                        </div>
                        <div class="table-responsive">
                            <table class="table table-bordered table-striped table-hover">
                                <thead>
                                    <tr>
                                        <th><?php echo display('sales_date') ?></th>
                                        <th><?php echo display('invoice_no') ?></th>
                                        <th><?php echo display('customer_name')?></th>
                                        <th><?php echo display('total_amount')?></th>
                                    </tr>
                                </thead>
                                <tbody>
                                <?php

1 个答案:

答案 0 :(得分:0)

这是获取本地日期/时间的最快方法

$dateTime = new DateTime("NOW", new DateTimeZone('Europe/Amsterdam'));

echo $dateTime->format("d/m/yyyy H:i:s");

此外,您可以从PHP使用localtime

希望这会有所帮助!