PHP

PHP - LinkedIn Skill Assessments Quizzes with Answers

In this article, you will find LinkedIn Assessment, Questions and Answers for PHP.

How to convert string to `camelCase` in Laravel

Convert a given string to `camelCase` in Laravel using `Str::camel()` method. The Laravel provides many helpers to convert once case to another.

Install XAMPP on Ubuntu

This article helps you to install XAMPP an open-source development environment on Ubuntu. XAMPP is an Apache distribution comes with MariaDB, PHP, and Perl. Just download and start the installer. It's that easy.

PHP - Ternary Operator

The ternary operator is a shorter version of an if...else expression. It allows us to execute an expression if a condition is satisfied and another expression if the condition is not satisfied.

Get Last Array Element in PHP and Laravel

This article, guide you through the retrieval of last array element in different ways in Laravel and also in PHP.

Create collection instance for given array in Laravel

This tutorial explains with syntax and an example of how to create a collection instance from provided array with Laravel collect() helper method in the framework.

Flatten Array using Arr::flatten() in Laravel

This tutorial explains with syntax and an example of how to flatten a multi-dimensional array based on the value of depth specified in the Laravel framework.

How To Move Record From One Table To Another In Laravel

This tutorial explains with an example of how to move a record from one database table to another in PHP Laravel framework.

How To Drop Composite Indexes With Migration In Laravel

This tutorial explains how to create and drop composite keys with migration in PHP Laravel framework with syntax and example

How To Create Composite Indexes With Migration In Laravel

This tutorial explains how to create composite keys with migration in PHP Laravel framework with syntax and example

Ways to declare unsigned columns in the Laravel migrations

Laravel allows developers to declare unsigned columns in different ways. As it's required to handle the relationship between tables by just associating models with each other.

How to build query string from an array with http_build_query in PHP

PHP has built in function http_build_query that can be used to prepare a query string from an array. Instead of explicitly appending elements to string, this function comes handy, which takes cares of generating URL-encoded query string either from an associative or indexed array.