Answers for "how to convert string to int in php laravel"

PHP
14

cast string to int php

$num = "3.14"; 
$int = (int)$num;//string to int
$float = (float)$num;//string to float
Posted by: Guest on March-23-2020
0

how to convert string to int in php laravel

$id = DB::table('leave_encash_approval')
            ->select('id')
            ->where('company_id',$request->subCompanyId)
            ->where('year',$request->year)
            ->get();
Posted by: Guest on December-07-2020

Code answers related to "how to convert string to int in php laravel"

Browse Popular Code Answers by Language