Skip to content

Instantly share code, notes, and snippets.

@zuoRambo
Last active June 29, 2016 04:30
Show Gist options
  • Save zuoRambo/df81fd522c8df0928f7608017815152a to your computer and use it in GitHub Desktop.
Save zuoRambo/df81fd522c8df0928f7608017815152a to your computer and use it in GitHub Desktop.
php skills

一些经常会用到但是记不住的函数

// Create array containing variables and their values from current symbol table
compact();
// compact的对应函数
extract();
// 获取定义的变量,包括预定义的全局变量
get_defined_vars();
list($a,,$b,,$c) = ['a','b','c','d','e'];

一些黑魔法

  • 之前代码逻辑不太注重GC,导致PHP Fatal Error “Allowed memory size of xxx bytes exhausted”
  • 然后程序就异常退出了,这个时候需要有类似golang的defer来做收尾处理
register_shutdown_function(function() use () {
    // 这里做一些处理,比如通知管理员、清理临时文件等
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment