php的可變函數

不言
發布: 2023-04-02 18:42:01
原創
2139 人瀏覽過

這篇文章主要介紹了關於php的可變函數,有著一定的參考價值,現在分享給大家,有需要的朋友可以參考一下

PHP 可變函數

#先將我的偽代碼寫上。

    protected $model;

    public function __construct(Category $category)
    {
        $this->model = $category;
    }

    public function getLists($request, $isPage = 'get', $order = 'created_at', $sort = 'desc')
    {
        return $this->model->orderBy($order, $sort)->$isPage();
    }
登入後複製

getLists 中,有一個 $isPage 的參數。本意是傳入 get 就是取得全部數據,paginate 就是分頁。寫完以後覺得哪裡不對勁。在我們平常的寫法中,查找全部資料 $this->model->orderBy($order, $sort)->get();  是這樣的,我也未見過使用變數來取代get()  的。在實際運行中,程式正常執行。隨後在論壇中詢問這種寫法。接下來就要引入一個概念,《可變函數》。

什麼是可變函數?

PHP 支援可變函數的概念。這意味著如果一個變數名後面有圓括號,PHP 將尋找與變數的值同名的函數,並且嘗試執行它。

了解了這個概念以後那麼上述程式就可以講的通了。 $isPage 在程式運行中,替換為 get, 而 $isPage 後面有一個圓括號,那麼程式就會尋找同名函數。進而繼續執行。

範例:
<?php
function foo() {
    echo "In foo()<br />\n";
}

function bar($arg = &#39;&#39;) {
    echo "In bar(); argument was &#39;$arg&#39;.<br />\n";
}
$func = &#39;foo&#39;;
$func();        //  执行 foo(); 命令行中输出:In foo()<br />

$func = &#39;bar&#39;;
$func(&#39;test&#39;);   // 执行 bar();命令行中输出:In bar(); argument was &#39;test&#39;.<br />
登入後複製
可變函數的語法來呼叫一個物件的方法。
<?php
class Foo
{
    function Variable()
    {
        $name = &#39;Bar&#39;;
        $this->$name(); // This calls the Bar() method
    }

    function Bar()
    {
        echo "This is Bar";
    }
}

$foo = new Foo();
$funcname = "Variable";
$foo->$funcname();   // This calls $foo->Variable()

// 命令行执行输出: This is Bar
登入後複製
當呼叫靜態方法時,函數呼叫要比靜態屬性優先。 Variable 方法和靜態屬性範例。
<?php
class Foo
{
    static $variable = &#39;static property&#39;;
    static function Variable()
    {
        echo &#39;Method Variable called&#39;;
    }
}

echo Foo::$variable; // This prints &#39;static property&#39;. It does need a $variable in this scope.
$variable = "Variable";
Foo::$variable();  // This calls $foo->Variable() reading $variable in this scope.
登入後複製

以上就是本文的全部內容,希望對大家的學習有所幫助,更多相關內容請關注PHP中文網!

相關推薦:

php的快速排序的程式碼

以上是php的可變函數的詳細內容。更多資訊請關注PHP中文網其他相關文章!

相關標籤:
來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
作者最新文章
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板
關於我們 免責聲明 Sitemap
PHP中文網:公益線上PHP培訓,幫助PHP學習者快速成長!