Skip to content

Tag: laravel

How to plus values of multi arrays

Here is my code in blade Laravel: @php $serialize = array_map(“serialize”, $arrayplus); $uniqueSerialize = array_unique($serialize); $amountplus = array_map(“unserialize”, $uniqueSerialize); dd($…

function optional properties in php

I have one function by 2 optional property and how send value hight? function test($size=1,$hight=2){ // code ……… } test($hight) test(null,$hight); Is there any other way? I dont need test(…