search

Home  >  Q&A  >  body text

This 44510e759cbf75c0ee0437ce98c01e27 who can help crack md5

This 44510e759cbf75c0ee0437ce98c01e27 Who can help crack md5

心静心静2568 days ago1144

reply all(3)I'll reply

  • PHP中文网

    PHP中文网2018-02-02 13:25:17

    Soft deletion and real deletion

    $user = model('User');
    $user::destroy(1);   // 软删除$user::destroy(1,true);   // 真实删除$user->delete();     // 软删除$user->delete(true);  // 真实删除

    By default, the query data does not include soft deleted data. If it needs to be included, query like this:

    $user = model('User');$data = $user::withTrashed()->select();

    If you only query soft deleted data, then Use it like this:

    $user = model('User');$data = $user::onlyTrashed()->select();


    reply
    0
  • PHP中文网

    PHP中文网2018-02-02 13:24:15

    MD5 is irreversible, which means basically no one can solve it. The only solution is to collect or generate data yourself to compile the comparison, so you just send an MD5 value and no one can help you

    reply
    0
  • 心静

    心静2018-02-02 12:31:03

    No one answered?

    reply
    0
  • Cancelreply