Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
define(foo,0000) foo 0000 undefine('foo') foo 0000
foo定義を解除するには、前にバッククォートを、後ろに一重引用符を付けて引用する必要があります。そうしないと、置換されて undefine になります0000。そう:
foo
0000
undefine(`foo')