खोज…


इनपुट मिल रहा है

इनपुट प्राप्त करने का प्राथमिक तरीका Illuminate\Http\Request को आपके नियंत्रक में इंजेक्ट करने से होगा, इसके बाद डेटा तक पहुंचने के कई तरीके हैं, जिनमें से 4 नीचे दिए गए उदाहरण में हैं।

<?php
namespace App\Http\Controllers;

use Illuminate\Http\Request;

class UserController extends Controller
{
    public function store(Request $request)
    {
        // Returns the username value
        $name = $request->input('username');

        // Returns the username value
        $name = $request->username;

        // Returns the username value
        $name = request('username');

        // Returns the username value again
        $name = request()->username;

    }

}

input फ़ंक्शन का उपयोग करते समय अनुरोध इनपुट उपलब्ध नहीं होने पर डिफ़ॉल्ट मान जोड़ना भी संभव है

$name = $request->input('username', 'John Doe');


Modified text is an extract of the original Stack Overflow Documentation
के तहत लाइसेंस प्राप्त है CC BY-SA 3.0
से संबद्ध नहीं है Stack Overflow