Use static code to display table colors in alternate rows_PHP tutorial

WBOY
Release: 2016-07-21 15:54:39
Original
801 people have browsed it

In actual programming applications, we often forget the function of STATIC. Reflect carefully. . :)
We use PHP to query data from the database and output the results to the browser. If the results have many rows and the bgcolor of the table is all monochrome, the viewer will feel uncomfortable. So how to make the colors of each row of the table different?
Please see below:

Copy code The code is as follows:

function getcolor()
{
static $colorvalue;//Define a static variable
if($colorvalue=="#ffffff")
$colorvalue="#000000";
else $colorvalue="#ffffff";
return($colorvalue);
}

print("n");//Output 10 lines below
for($i=0;$i<10 ;$i++)
{ $bcolor=getcolor();//Change the background color
print("n");
print("");
}
print("
$i< ;/td>n");
print("
n");
?>

Explanation:
A static variable static $colorvalue is defined in this program, which means that after the function call ends,
This variable $colorvalue still retains its value and does not disappear. When the getcolor() function is called again, the value of the variable $colorvalue is the value of $colorvalue at the end of the last function call.​

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/318437.htmlTechArticleIn actual programming applications, we often forget the function of STATIC. Reflect carefully. . :) We use PHP to query data from the database and output the results to the browser. If the results are very...
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!