Search

Showing 7 of 1,216 result(s)

/blog/2016/11/30/laravels-bcrypt-hasher#content-checkvalue-hashedvalue-array-options--

The check method will validate a given $value against a previously generated $hashedValue . The $options parameter is not utilized in Laravel's Bcrypt implementation. The $value must be the plain text value to check, and the $hashedValue should be...

/blog/2014/04/02/how-does-php-work-with-the-web-server-and-browser#content-php-and-apache-output

…n applications built with client-side MVC frameworks often see the role of PHP change to just interacting with server-side data storage. Let's take another look at this process with a diagram. In this diagram, we will assume the user is going to...

/blog/2023/04/11/creating-a-simple-honeypot-field-in-laravel#content-setting-up-our-form-and-routes

…g and testing our honeypot feature. For our example, we do not need anything overly complicated to build and test our honeypot's functionality; the following Blade template will be all that we need for now: In our sample template, on line 9, we...

/blog/2016/11/30/laravel-implementing-a-crypt_ext_des-hasher

In this article we will create an implementation of Illuminate\Contracts\Hashing\Hasher using PHP's crypt function and the CRYPT_EXT_DES hashing function. Like in the previous section, we will examine each method before looking at the full...

/blog/2016/11/30/laravel-implementing-a-crypt_sha256-hasher

In this article we will create an implementation of Illuminate\Contracts\Hashing\Hasher using PHP's crypt function and the CRYPT_SHA256 hashing function. Like in the previous sections, we will examine each method before looking at the full...

/blog/2016/11/30/laravel-implementing-a-crypt_sha512-hasher

In this article we will create an implementation of Illuminate\Contracts\Hashing\Hasher using PHP's crypt function and the CRYPT_SHA512 hashing function. Like in the previous sections, we will examine each method before looking at the full...