MordenPHP阅读笔记(一)——先跑再说,跑累了再走

时间:2023-03-08 16:19:21
MordenPHP阅读笔记(一)——先跑再说,跑累了再走

---恢复内容开始---

  后台一大堆半成品,或者是几乎不成的。。。

这本书不错,起码是别人推荐的,然后也是比较新的东西,学哪本不是学嘛,关键是得看。

今儿个网不好,科研所需的代码下不到,看书做笔记吧。

这本书基本将的是5.4版本后的一些新变化,写的浅显易懂,虽然鄙人走的还不顺溜,跑一跑也摔不到哪儿去,跑累了我有的是走的机会~~

(一)特性

一、命名空间

一个文件一个类,用了命名空间方便互相调用;

 //
//Namespace
//
namespace ModernPHP\feature\mingmingkongjian;
function var_dump(){
echo "Shit!"."</br>";
} $test="OK";
var_dump($test);
\ModernPHP\feature\mingmingkongjian\var_dump(); //命名空间必须顶头,但一个文件中可以有很多命名空间,然后也可以有子空间
//厂商的命名空间是最顶层的命名空间,用于识别品牌
//旨在解决命名冲突的问题,当然现在应该有比较灵活的其他用法 //一个比较实用的点:导入和别名
//导入另一个文件夹下的类定义,直接用
require 'index.php';
use a\aaa;
$daoru=new aaa;
$daoru->send();
//use是导入,然后在use中设置最懒的别名
//另外,5.6版本后可以实现use 函数
// use func a\call;
// \a\call();

index.php

 <?php
namespace a;
class aaa{
public function send(){
echo "ok";
}
} function call(){
echo "func_use is successful.";
}

二、使用接口

接口,本来没太懂,看懂了之后简直了,牛逼啊!

一个接口,大家只要遵守接口规定,就都能用,就这么个意思。

下面是一个获得内容的接口示例,还可以写更多基于此接口的模块;(其中,模块中getContent的我基本都不会。。。哭)

<?php
//
//Chapter2.P19
//Feature_Interface
//
namespace ModernPHP\feature\jiekou; class DocumentStore{
protected $data=[]; public function addDocument(Documentable $document){ //这里注明只能使用接口的参数
$key=$document->getID();
$value=$document->getContent();
$this->data[$key]=$value;
} public function getDocuments(){
return $this->data;
}
} interface Documentable{ //定义接口,说白了就是定规矩,其他地方要用,就得说一声
public function getId(); public function getContent();
} class HtmlDocument implements Documentable{ //声明要用接口;这个是获得url的内容的
protected $url; public function __construct($url){
$this->url=$url;
} public function getId(){
return $this->url;
} public function getContent(){
$ch=curl_init(); //这里的curl是针对url进行操作一个库(相当于)。这个命令是开启一个curl对话,所以下面这些都是一个对话
curl_setopt($ch, CURLOPT_URL, $this->url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch,CURLOPT_CONNECTTIMEOUT,3);
curl_setopt($ch,CURLOPT_FOLLOWLOCATION,1);
curl_setopt($ch,CURLOPT_MAXREDIRS,3);
$html=curl_exec($ch); //由这个命令执行刚才的对话
curl_close($ch); return $html;
}
} $documentStore=new DocumentStore(); $htmlDoc=new HtmlDocument('http://www.baidu.com');
$documentStore->addDocument($htmlDoc); print_r($documentStore->getDocuments());

另一个模块

 class StreamDocument implements Documentable{  //流媒体
protected $resource;
protected $buffer; //缓冲区大小 public function __construct($resource,$buffer=4096){
$this->resource=$resource;
$this->buffer=$buffer;
} public function getId(){
return 'resource-'.(int)$this->resource;
} public function getContent(){
$streamContent='';
rewind($this->resource); //rewind() 函数将文件指针的位置倒回文件的开头
while (feof($this->resource)===false){ //feof() 函数检测是否已到达文件末尾 (eof)。
$streamContent.=fread($this->resource,$this->buffer);
} return $streamContent;
}
}

 三、性状

奇怪的东西。。。

其实就是为了多重继承或者一对多个不同的类别吧

 <?php
//
//Chapter2.P23
//Feature_Trait
//性状
// //前面说的接口,是针对同类型的东西,实现相同的功能的;
//这里的性状是针对不同的东西,实现相同的功能 //基本用法如下
trait traitName{
public function testThis(){
echo "This is how trait works."."<br/>";
}
} trait traitMore{
public function testAgain(){
echo "This is multiple use."."<br/>";
}
} class className{
use traitName;
use traitMore; } $classMine=new className();
$classMine->testThis();
$classMine->testAgain();

 四、生成器

直接上代码

 <?php
//
//Chapter2.P26
//Feature_Generator
//生成器
// //其实就是在函数中使用了yield语句的东西
//优点在于节省了内存使用情况
//方法是通过动态分配内存进行循环操作
//典型用处是处理csv类数据文件 namespace ModernPHP\feature\shengchegnqi; function getRows($file){
$handle=fopen($file,'rb');
if ($handle===false){
throw new Exception(); //抛出错误原因
}
while (feof($handle)===false) {
yield fgetcsv($handle);
}
fclose($handle);
} foreach (getRows('data.csv') as $row){
print_r($row);
echo "<br/>";
}
//当数据文件很大时,效果尤其明显

 五、闭包

这里闭包基本等于匿名函数

 <?php
//
//Chapter2.P29
//Feature_ClosePatch
//闭包或匿名函数
// //把函数当作是变量
//然后它就可以像变量一样用来用去了。。
//常用做函数和方法的回调 namespace ModernPHP\feature\bibao;
$var=function ($name){
return sprintf('Hello %s',$name);
}; echo $var('Andy'); //做回调
$array=[2,3,4];
$num=array_map(function ($number){ //array_map,将函数作用到数组中的每个值上,每个值都乘以本身,并返回带有新值的数组
return $number+1;
},$array);
print_r($num);

六、附加状态

这个没搞懂。。。

(二)标准

PHP-FIG的一些约定俗成;

---类名称,驼峰式,ShitHappens

---方法名称,驼峰式,但首字母小写,shitHappens

---缩进统一为4个空格

---不写?>结束符号;

---{另起一行;

---命名空间要有空格;

---类中属性和方法必须有可见性声明;

---if等控制性结构后面有空格;

 <?php
//
//Chapter3.P44
//PHP-FIG puts PSRs
// namespace ModernPHP\standard\realize; use ModernPHP\feature\bibao;
use ModernPHP\feature\fujiazhuangtai; class ShitHappens
{
public $a; public function suck()
{
if ($this->a===false){
return true;
}
}
}

----------------------

后面的都是讲述的东西,有需要的我再写吧。