This 44510e759cbf75c0ee0437ce98c01e27 Who can help crack md5
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();
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
No one answered?
Soft deletion and real deletion
By default, the query data does not include soft deleted data. If it needs to be included, query like this:
If you only query soft deleted data, then Use it like this:
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
No one answered?