php函数前面的@有什么含义 PHP / 2021年9月13日 / hamster 在查看别人代码的时候后,会发现有些函数前面会加上@,那@的作用是什么呢。 @在PHP中用作错误控制操作符,当表 Read more
php下isset()和empty()两者的区别 PHP / 2021年7月14日 / hamster 两者定义: isset()检验变量是否设置并且非null empty()则是检验变量是否为空 先看示例: 页面 Read more
PHP获取每个时间段的时间戳 PHP / 2021年7月12日 / hamster //每周一$a = strtotime('this week Monday',time());//每月初一$b Read more