Search
 
SCRIPT & CODE EXAMPLE
 

PHP

static php

<?php
  //Explanation and features
  //1- we can call the static methode  and  property without creating instance
  //from the class  => syntax to call is : classname::methodename(),ore propName.
  // static property save the new value in the function . 
  
  class carA {
  static private $color="red";
  public static function size (){return "big"}; 
  
  
} 

class carB { $color private $color =" black" ;
              public  function size (){return "small"}; 
            //to access a static property to a public function in the same class =>
              static private $price= 3000; 
           public function price(){ 
            return self::$price;
              
            }
            


           }

$carOb = new carB(); 
echo $carOb->color;//output=>black;
echo $carOb->size();//output=>small;
echo $carOb->price();//output=>3000;



//to access to the static( property and methodes) className::propName/methodeName
echo carA::$color; //output is : red;
  echo carA::size(); //output is : big;

  
  
  
  
  
  
  
Comment

php static variable

/*
  1) Example demonstrating need for static variables
  This function is quite useless since every time it is called 
  it sets $a to 0 and prints 0. 
  The $a++ which increments the variable serves no purpose 
  since as soon as the function exits the $a variable disappears.
  To make a useful counting function which will not lose track of the current count, 
  the $a variable is declared static:
*/
function test()
{
    $a = 0;
    echo $a;
    $a++;
}

/*
  2) Example use of static variables
  A static variable exists only in a local function scope, 
  but it does not lose its value when program execution leaves this scope.
*/
function newTest()
{
    static $a = 0;
    echo $a;
    $a++;
}
Comment

Calling itself a static function in php

//https://www.php.net/manual/en/language.oop5.static.php

self::staticMethod();
Comment

static function php

<?php
class Car
{
    public function test($var = 'Hello kinjal')
    {
        $this->var = $var;
        return $this->var;
    }
}
class Bike
{
    public static function test($var)
    {
        $var = '<br>this is static function';
        return $var;
    }
}
$obj = new Car();
echo $obj->test();
echo Bike::test('this is non static');      //static function called using :: double colon

?>
Comment

static variable php


<?php
function foo(){
    static $int = 0;          // correct 
    static $int = 1+2;        // correct
    static $int = sqrt(121);  // wrong  (as it is a function)

    $int++;
    echo $int;
}
?>

Comment

static functions php

class Products {

	protected $id;
    
    public function setId($id)
    { 
    	return $this->id = $id;
    }
    
    public function getProduct()
    { 
    	$arr_list = [
        				[
                          'name'=>'Proton',
                          'year' => 1987
                        ],
                        [
                          'name'=>'Produa',
                          'year' => 1990
                        ],
                    ];
    	return $arr_list;
    }

	public static function product_list()
    {
    	//whatever data want to return
        $arr_list = [
        				[
                          'name'=>'Proton',
                          'year' => 1987
                        ],
                        [
                          'name'=>'Produa',
                          'year' => 1990
                        ],
                    ];
    	return $arr_list;
    }
    
    
}

//static can call directly  
$lists = Product::product_list();

//non static
$product = new Product();
$lists = $product->getProduct();

//when calling class must alert memory consume. 
Comment

PREVIOUS NEXT
Code Example
Php :: apt-get install php wordpress extensions 
Php :: activerecord yii2 select with limit(start,end) not working 
Php :: php artisan preset bootstrap 
Php :: cara install php7.3 di ubuntu 20.04 
Php :: codeigniter number format function 
Php :: static variable php 
Php :: check if config exist laravel 
Php :: recursive directory only listing php 
Php :: exit and echo php 
Php :: php get woocommerce attribute from database 
Php :: get month days in php 
Php :: QR code for laravel 
Php :: laravel database engine innodb 
Php :: Laravel htaccess for aws ec2 
Php :: php fpdf in phpmailer 
Php :: Undefined property: stdClass::$ 
Php :: Update Custom Cart Count (or any HTML) after AJAX Add to Cart in WooCommerce 
Php :: upgrade php 7.3 to 7.4 
Php :: How to make a simple mail system in Laravel without view or notification 
Php :: symfony get api data 
Php :: laravel defalt value null 
Php :: Cannot modify header information - headers already sent by 
Php :: how to integrate google reCAPTCHA in codeigniter? 
Php :: causes of class not found in laravel 
Php :: php convert accented characters to html entities 
Php :: onclick on image php 
Php :: send data with window.location.href 
Php :: create model for existing table in laravel 
Php :: php password_hash 
Php :: base64_img 
ADD CONTENT
Topic
Content
Source link
Name
5+7 =