溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

PHP中實現(xiàn)鏈?zhǔn)讲僮鞯姆椒ㄓ心男?/h1>
發(fā)布時間:2021-02-04 17:14:04 來源:億速云 閱讀:139 作者:Leah 欄目:開發(fā)技術(shù)

這篇文章給大家介紹PHP中實現(xiàn)鏈?zhǔn)讲僮鞯姆椒ㄓ心男瑑?nèi)容非常詳細(xì),感興趣的小伙伴們可以參考借鑒,希望對大家能有所幫助。

在php中有很多字符串函數(shù),例如要先過濾字符串收尾的空格,再求出其長度,一般的寫法是:

strlen(trim($str))

如果要實現(xiàn)類似js中的鏈?zhǔn)讲僮鳎热缦裣旅孢@樣應(yīng)該怎么寫?

$str->trim()->strlen()

下面分別用三種方式來實現(xiàn):

方法一、使用魔法函數(shù)__call結(jié)合call_user_func來實現(xiàn)

思想:首先定義一個字符串類StringHelper,構(gòu)造函數(shù)直接賦值value,然后鏈?zhǔn)秸{(diào)用trim()和strlen()函數(shù),通過在調(diào)用的魔法函數(shù)__call()中使用call_user_func來處理調(diào)用關(guān)系,實現(xiàn)如下:

<?php
class StringHelper 
{
  private $value;
  function __construct($value)
  {
    $this->value = $value;
  }
  function __call($function, $args){
    $this->value = call_user_func($function, $this->value, $args[0]);
    return $this;
  }
  function strlen() {
    return strlen($this->value);
  }
}
$str = new StringHelper(" sd f 0");
echo $str->trim('0')->strlen();

終端執(zhí)行腳本:

php test.php 
8

方法二、使用魔法函數(shù)__call結(jié)合call_user_func_array來實現(xiàn)

<?php
class StringHelper 
{
  private $value;
  function __construct($value)
  {
    $this->value = $value;
  }
  function __call($function, $args){
    array_unshift($args, $this->value);
    $this->value = call_user_func_array($function, $args);
    return $this;
  }
  function strlen() {
    return strlen($this->value);
  }
}
$str = new StringHelper(" sd f 0");
echo $str->trim('0')->strlen();

說明:

array_unshift(array,value1,value2,value3...)

array_unshift() 函數(shù)用于向數(shù)組插入新元素。新數(shù)組的值將被插入到數(shù)組的開頭。

call_user_func()call_user_func_array都是動態(tài)調(diào)用函數(shù)的方法,區(qū)別在于參數(shù)的傳遞方式不同。

方法三、不使用魔法函數(shù)__call來實現(xiàn)

只需要修改_call()trim()函數(shù)即可:

public function trim($t)
{
  $this->value = trim($this->value, $t);
  return $this;
}

關(guān)于PHP中實現(xiàn)鏈?zhǔn)讲僮鞯姆椒ㄓ心男┚头窒淼竭@里了,希望以上內(nèi)容可以對大家有一定的幫助,可以學(xué)到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。

向AI問一下細(xì)節(jié)
AI