产品动态
产品公告
<?phpfunction main_handler($event, $context) {print_r($_ENV);echo getenv('SCF_RUNTIME');return "hello world";}?>
TZ=Asia/Shanghai 环境变量,并在函数代码中通过date_default_timezone_set(getenv('TZ')); 设置需要使用的时区。示例如下:<?phpfunction main_handler($event, $context) {date_default_timezone_set(getenv('TZ'));echo date("Y-m-d H:i:s",time());return "hello world";}?>
<?phpfunction main_handler($event, $context) {$url = 'https://cloud.tencent.com';echo file_get_contents($url);return "hello world";}?>
文档反馈