Answers for "how to make variable static php"

PHP
0

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;
}
?>
Posted by: Guest on June-22-2021

Code answers related to "how to make variable static php"

Browse Popular Code Answers by Language