如何将PHP链式操作改写为长尾词?

2026-04-06 18:501阅读0评论SEO教程
  • 内容介绍
  • 文章标签
  • 相关推荐

本文共计479个文字,预计阅读时间需要2分钟。

如何将PHP链式操作改写为长尾词?

PHP链式操作的关键是在完成操作后返回当前对象。例如,在完成查询操作后应使用`return $this;`;另外,不建议使用`__call`方法来实现链式操作。以下是对给定内容的简化

phpPHP链式操作的关键点:

1.完成操作后返回`$this`;

如何将PHP链式操作改写为长尾词?

2.不使用`__call`方法实现链式操作。

示例代码:

'', 'where'=> '', 'order'=> '', 'limit'=> ''); public function from($tableName) { $this->sql['from']='FROM ' . $tableName; return $this; }}?>

php链式操作的关键是在做完操作后要return $this;

一、不使用__call方法实现链式操作

<?php class Sql{ private $sql=array("from"=>"", "where"=>"", "order"=>"", "limit"=>""); public function from($tableName) { $this->sql["from"]="FROM ".$tableName; return $this; } public function where($_where='1=1') { $this->sql["where"]="WHERE ".$_where; return $this; } public function order($_order='id DESC') { $this->sql["order"]="ORDER BY ".$_order; return $this; } public function limit($_limit='30') { $this->sql["limit"]="LIMIT 0,".$_limit; return $this; } public function select($_select='*') { return "SELECT ".$_select." ".(implode(" ",$this->sql)); } } $sql =new Sql(); echo $sql->from("testTable")->where("id=1")->order("id DESC")->limit(10)->select(); //输出 SELECT * FROM testTable WHERE id=1 ORDER BY id DESC LIMIT 0,10 ?>

二、使用__call方法实现链式操作

__call()在对象调用一个不可访问的方法时会被触发,所以可以实现类的动态方法的创建,实现php的方法重载功能,但它其实是一个语法糖(__construct()方法也是)。

<?php class String { public $value; public function __construct($str=null) { $this->value = $str; } public function __call($name, $args) { $this->value = call_user_func($name, $this->value, $args[0]); return $this; } public function strlen() { return strlen($this->value); } } $str = new String('01389'); echo $str->trim('0')->strlen(); // 输出结果为 4;trim('0')后$str为"1389" ?>

相关推荐:

PHP视频教程:www.php.cn/course/list/29/type/2.html

以上就是php链式操作的实现的详细内容,更多请关注自由互联其它相关文章!

标签:关键

本文共计479个文字,预计阅读时间需要2分钟。

如何将PHP链式操作改写为长尾词?

PHP链式操作的关键是在完成操作后返回当前对象。例如,在完成查询操作后应使用`return $this;`;另外,不建议使用`__call`方法来实现链式操作。以下是对给定内容的简化

phpPHP链式操作的关键点:

1.完成操作后返回`$this`;

如何将PHP链式操作改写为长尾词?

2.不使用`__call`方法实现链式操作。

示例代码:

'', 'where'=> '', 'order'=> '', 'limit'=> ''); public function from($tableName) { $this->sql['from']='FROM ' . $tableName; return $this; }}?>

php链式操作的关键是在做完操作后要return $this;

一、不使用__call方法实现链式操作

<?php class Sql{ private $sql=array("from"=>"", "where"=>"", "order"=>"", "limit"=>""); public function from($tableName) { $this->sql["from"]="FROM ".$tableName; return $this; } public function where($_where='1=1') { $this->sql["where"]="WHERE ".$_where; return $this; } public function order($_order='id DESC') { $this->sql["order"]="ORDER BY ".$_order; return $this; } public function limit($_limit='30') { $this->sql["limit"]="LIMIT 0,".$_limit; return $this; } public function select($_select='*') { return "SELECT ".$_select." ".(implode(" ",$this->sql)); } } $sql =new Sql(); echo $sql->from("testTable")->where("id=1")->order("id DESC")->limit(10)->select(); //输出 SELECT * FROM testTable WHERE id=1 ORDER BY id DESC LIMIT 0,10 ?>

二、使用__call方法实现链式操作

__call()在对象调用一个不可访问的方法时会被触发,所以可以实现类的动态方法的创建,实现php的方法重载功能,但它其实是一个语法糖(__construct()方法也是)。

<?php class String { public $value; public function __construct($str=null) { $this->value = $str; } public function __call($name, $args) { $this->value = call_user_func($name, $this->value, $args[0]); return $this; } public function strlen() { return strlen($this->value); } } $str = new String('01389'); echo $str->trim('0')->strlen(); // 输出结果为 4;trim('0')后$str为"1389" ?>

相关推荐:

PHP视频教程:www.php.cn/course/list/29/type/2.html

以上就是php链式操作的实现的详细内容,更多请关注自由互联其它相关文章!

标签:关键