What are some popular PHP frameworks that can be used for web development?

One popular PHP framework for web development is Laravel, known for its elegant syntax and powerful features such as routing, authentication, and ORM. Another popular choice is Symfony, which offers a modular architecture and a large set of reusable components. CodeIgniter is another widely-used PHP framework known for its simplicity and speed, making it a good choice for small to medium-sized projects.

// Example of using Laravel framework for routing
Route::get('/', function () {
    return view('welcome');
});