PHP SPL標準庫中的常用函數介紹_php技巧

來源:互聯網
上載者:User

PHP SPL標準庫中提供了一些函數用來處理如自動載入、迭代器處理等。

spl_autoload_extensions()添加spl_autoload()可載入的副檔名
spl_autoload_register()註冊函數到SPL __autoload函數棧中。

複製代碼 代碼如下:

/*test1.php*/
<?php
class Test1
{
}
 
/*test2.lib.php*/
<?php
class Test2
{
}
 
/*test.php*/
<?php
//設定可載入類的副檔名
spl_autoload_extensions(".php,.inc.php,.class.php,.lib.php");
//設定include_path,autoload會在這些path中去尋找類檔案,可通過PATH_SEPARATOR添加多個path
set_include_path(get_include_path().PATH_SEPARATOR.'libs/');
//不提供參數,預設實現函數是spl_autoload()
spl_autoload_register();
 
$test1 = new Test1();
$test2 = new Test2();

spl_autoload()它是__autoload()的預設實現,它會去include_path中負載檔案(.php/.inc)

複製代碼 代碼如下:

/*test1.php*/
<?php
class Test1
{
}
 
/*test.php*/
<?php
set_include_path(get_include_path().PATH_SEPARATOR.'libs/');
spl_autoload('test1');
$test1 = new Test1();

spl_autoload_call()調用所有spl_autoload_register註冊函數來負載檔案

複製代碼 代碼如下:

/*test1.php*/
<?php
class Test
{
    public function getFilename()
    {
        echo 'test1.php';
    }
}
 
/*test2.lib.php*/
<?php
class Test
{
    public function getFilename()
    {
        echo 'test2.lib.php';
    }
}
 
/*test.php*/
<?php
 
function loader($classname)
{
    if($classname == 'Test1') {
        require __DIR__ . '/test1.php';
    }
    if($classname == 'Test2') {
        require __DIR__ . '/test2.lib.php';
    }
}
 
spl_autoload_register('loader');
spl_autoload_call('Test2');
 
 
$test = new Test();
$test->getFilename(); //test2.lib.php

其它SPL 函數介紹:
class_implements — 返回指定的類實現的所有介面。
class_parents — 返回指定類的父類。
class_uses — Return the traits used by the given class
iterator_apply — 為迭代器中每個元素調用一個使用者自訂函數
iterator_count — 計算迭代器中元素的個數
iterator_to_array — 將迭代器中的元素拷貝到數組
spl_autoload_functions — 返回所有登入的__autoload()函數
spl_autoload_unregister — 登出登入的__autoload()函數
spl_classes — 返回所有可用的SPL類
spl_object_hash — 返回指定對象的hash id

如iterator相關函數使用:

複製代碼 代碼如下:

$iterator  = new  ArrayIterator (array( 'recipe' => 'pancakes' ,  'egg' ,  'milk' ,  'flour' ));
 
print_r(iterator_to_array($iterator)); //將迭代器元素轉化為數組
echo iterator_count($iterator); //計算迭代器元素的個數
print_r(iterator_apply($iterator, 'print_item', array($iterator)));//為迭代器每個元素調用自訂函數
 
 
function print_item(Iterator $iterator)
{
    echo  strtoupper ( $iterator -> current ()) .  "\n" ;
    return  TRUE ;
}

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.