How can i return a variable value from one function and pass it to another function in a class and access it ?, im new to php class.
here is the code i have tried
<?php
class BioTool{
public function one(){
$lol =[2,3,5]; print_r($lol);
}
public function two(){
$newarr=$this->one(); //this only return the array but i can't access it, check below.
print_r($newarr[0]); //not working
}
}
$biotool=new BioTool();
$biotool->two();
from Newest questions tagged laravel-5 - Stack Overflow https://ift.tt/2MgKx0f
via IFTTT
Aucun commentaire:
Enregistrer un commentaire