php學習(2)

小溪彼岸發表於2016-06-26

php全域性變數

demo1:

<?php
$x=5;
$y=10;

function myTest() {
  global $x,$y;
  $y=$x+$y;
}

myTest();
echo $y; // 輸出 15
?>

demo2:

<?php
$x=5;
$y=10;

function myTest() {
  $GLOBALS['y']=$GLOBALS['x']+$GLOBALS['y'];
} 

myTest();
echo $y; // 輸出 15
?>

php 關鍵詞

<?php

function myTest() {
  static $x=0;
  echo $x;
  $x++;
}

myTest();
myTest();
myTest();

?>

php字串操作

  • strlen() 函式 , strlen() 函式返回字串的長度,以字元計。
  • strpos() 函式,strpos() 函式用於檢索字串內指定的字元或文字。
<?php
echo strlen("Hello world!");
?>

<?php
echo strpos("Hello world!","world");
?>

php 日期時間

//  時間
date_default_timezone_set('Asia/shanghai');
print "strftime()格式:".strftime('現在是:%c')."<br>";
print "date('s')格式".date('r')."<br>";
print "date('m/d/y')格式".date('m/d/y')."<br>";
print "strftime('%m%d%y');".strftime('%m%d%y')."<br>";

?>


<?php
date_default_timezone_set('Asia/shanghai');
print "當前時間是:"."<br>";
print strftime("今年是%y%m%d日,現在的時間是:%I%M%S秒");
print "<br>";
print strftime("今年是%y%m%d日,現在的時間是:%H%M%S秒");
print "<br>";
print "date()格式"."<br>";
print "今年是".date("Y年m月d日").",現在時間是:".date("h點i分s秒");
print "<br>";
print "今年是".date("Y年m月d日").",現在時間是:".date("H點i分s秒");
?>


<?php
date_default_timezone_set('Asia/shanghai');
print date("現在時間是Y年m月d日,時間是:h點i分s秒")."<br>";
print "strftime格式時間累加<br>";
print strftime("%I:%M:%S",time()+60*60);

print "<br>";

print "date()格式<br>";
print date("h:i:s",time()+ 60*60);

?>

php 常量

  • 首個引數定義常量的名稱
  • 第二個引數定義常量的值
  • 可選的第三個引數規定常量名是否對大小寫敏感。預設是 false。
<?php
define("Green", "greenColor");
echo Green;
?>

php函式:

  • 生成css函式
<?php
//該函式生成一個css
function page($bgcolor = NULL,$font_color = NULL,$font_size){
    echo "<style>
         body{
          background-color: $bgcolor;
          color:$font_color;
          font-size: $font_size;
         }</style>";
}
page('red','green','24');
?>
  • 遞迴函式
  <?php
//  遞迴函式
 function fun($n){
     if($n<=1) return 1;
     $m = $n-1;
     return $n*fun($m);
 }
print fun(6);
?>

php檔案操作

<?php
//  檔案操作
 $page = file_get_contents('test.8.1.html');
 $page = str_replace('you','me',$page);
 print $page;
 ?>

<?php
  //寫入檔案
file_put_contents('test.8.2.html',"<h1>哈歐亞</h1>");
?>


<?php
  //一次讀一行
$th = fopen('test.8.2.html','r+');
for($line = fgets($th);!feof($th);$line= fgets($th)){
    $line = trim($line);//去掉空格
    $info = explode(',',$line);//分隔
    foreach($info as $i ) print '<li><a href="mailtoL'.$i.'">'.$i."</li>";
}

?>

//判斷檔案屬性
<?php
  if(is_file($fname)){
      print "該檔案已存在";
  }
  else {
      print "沒有此檔案";
      print "已生成一個檔案";
      file_put_contents($fname);
  }

  if(is_readable($fname)){
      $content = file_get_contents($fname);
  }else{
      print "不存在該檔案";
  }

  if(is_writable($fname)){
      $fh = fopen($fname,'ab');
      fwrite($fh,'時間是:'.date('h點i分s秒')."\r\n");
      fclose();
  }else{
      print "此檔案不可寫";
  }

?>

php目錄

<?php
 $dir = getcwd();
 if(!is_dir($dir)){
     mkdir($dir);
 }
 $dh = opendir($dir);
 while(($file = readdir($dh)) !== false){
     echo "檔名:".$file."<br>檔案型別:".filetype($dir.$file)."\n";
 closedir($dir);
?>

<?php
 $dir = getcwd();
 if(is_dir($dir)){
     chdir($dir);
 }else{
     mkdir($dir);
     chdir($dir);
 }
?>