Why use !== FALSE to check string contains a specific word in php?

Why use !== FALSE to check string contains a specific word in php?

In this article, We’ll see why we use !== FALSE to check sub-string is located inside another string. strpos — Find the position of the first occurrence of a case-sensitive substring in a string. strpos returns the position of a string inside another. if the string is not found, it returns false and return 0Read more about Why use !== FALSE to check string contains a specific word in php?[…]

How to Install Laravel – The PHP Framework

How to Install Laravel – The PHP Framework

Laravel is a open-source web application framework with expressive, elegant syntax. Laravel uses the Model-View-Controller approach, which allows great separation between logic and presentation. In this article, we’ll see step by step – How to install laravel? At first you must have composer installed on your system. Composer is an application-level package manager for theRead more about How to Install Laravel – The PHP Framework[…]