Is it ever ok to store password in plain text in a php variable or php constant?

后端 未结 8 2322
借酒劲吻你
借酒劲吻你 2020-11-27 18:58

As per question, is it safe to store passwords on php pages such as

$password = \'pa$$w0rd\';

If the users can\'t see it, it\'s safe, right

8条回答
  •  庸人自扰
    2020-11-27 19:24

    Sometimes it just has to be f.e. for a mail application where you can only login with the plain password and not with a hash. And if your application doesn't have security issues it should not affect you.

提交回复
热议问题