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.
PHPでハッシュ記号をどのようにエスケープしますか?
私はやりたいのです"DELETE FROM [#8:1]"が、それを機能させるために私はしなければなりません"DELETE FROM [".'#'."8:1]"。それは機能しますが、少し不器用に見えますが、これを行うためのより良い方法はありますか?
"DELETE FROM [#8:1]"
"DELETE FROM [".'#'."8:1]"
一重引用符を使用する
'DELETE FROM [#8:1]'