PHP Learning Notes Function statement (ii) _php Foundation

Source: Internet
Author: User
Tags dotnet
Copy Code code as follows:

<?php
/*
* 1. Internal function: PHP can declare function inside function
* The purpose is to call inside the function
* Used to help external functions complete some sub functions
*
* 2. Recursive function: Call your own function name inside yourself
*
* 3. Reusing functions
*
* Require: for static inclusion
* Include: for dynamic inclusion
* Require_once: For static inclusion, contains only once
* Include_once: For dynamic inclusion, containing only once
*
* 4. Use of some system functions
* Resource =opendir ("directory Name")
* READDIR (Resources)
*
*
*/
Internal function
Function score ($php, $java, $dotnet)
{
function php ($php)
{
if ($php >60)
return "Pass";
Else
return "fail";
}
function Java ($java)
{
if ($java >60)
return "Pass";
Else
return "fail";
}
function dotnet ($dotnet)
{
if ($dotnet >60)
return "Pass";
Else
return "fail";
}
$total = $php + $java + $dotnet;
$AGV = $total/3;
echo "Your PHP score is {$php} points,". PHP ($php). " <br> ";
echo "Your Java score is {$java} points,". Java ($java). " <br> ";
echo "Your dotnet score is {$dotnet} points,". dotnet ($dotnet). " <br> ";
echo "Your total score is: {$total}<br>";
echo "Your average score is: {$AGV}<br>";
}
Score (50,90,70);
Recursive functions
Function Demo ($num)
{
echo $num. " <br> ";
if ($num >0)
Demo ($num-1);
Else
echo "--------------------------------<br>";
echo $num. " <br> ";
}
Demo (10);
function Total ($dirname,& $dirnum,& $filename)
{
$dir =opendir ($dirname);
Readdir ($dir). " <br> ";
Readdir ($dir). " <br> ";
while ($filename =readdir ($dir))
{
$newfile = $dirname. " /". $filename;
echo $filename. " <br> ";
if (Is_dir ($filename
}
}
$dirnum = 0;
$filenum = 0;
Total ("C:/windows", $dirnum, $filenum);
echo "Total directory:". $dirnum. " <br> ";
echo "Total Files:". $filenum. " <br> ";
?>

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.