溫馨提示×

溫馨提示×

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

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

PHP中有哪些常用的SPL標(biāo)準(zhǔn)庫函數(shù)

發(fā)布時(shí)間:2021-01-14 15:05:11 來源:億速云 閱讀:255 作者:Leah 欄目:開發(fā)技術(shù)

PHP中有哪些常用的SPL標(biāo)準(zhǔn)庫函數(shù)?相信很多沒有經(jīng)驗(yàn)的人對此束手無策,為此本文總結(jié)了問題出現(xiàn)的原因和解決方法,通過這篇文章希望你能解決這個(gè)問題。

PHP SPL標(biāo)準(zhǔn)庫中提供了一些函數(shù)用來處理如自動(dòng)加載、迭代器處理等。

spl_autoload_extensions()添加spl_autoload()可加載的文件擴(kuò)展名
spl_autoload_register()注冊函數(shù)到SPL __autoload函數(shù)棧中。

復(fù)制代碼 代碼如下:


/*test1.php*/
<?php
class Test1
{
}
 
/*test2.lib.php*/
<?php
class Test2
{
}
 
/*test.php*/
<?php
//設(shè)置可加載類的文件擴(kuò)展名
spl_autoload_extensions(".php,.inc.php,.class.php,.lib.php");
//設(shè)置include_path,autoload會(huì)在這些path中去尋找類文件,可通過PATH_SEPARATOR添加多個(gè)path
set_include_path(get_include_path().PATH_SEPARATOR.'libs/');
//不提供參數(shù),默認(rèn)實(shí)現(xiàn)函數(shù)是spl_autoload()
spl_autoload_register();
 
$test1 = new Test1();
$test2 = new Test2();

spl_autoload()它是__autoload()的默認(rèn)實(shí)現(xiàn),它會(huì)去include_path中加載文件(.php/.inc)

復(fù)制代碼 代碼如下:


/*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()調(diào)用所有spl_autoload_register注冊函數(shù)來加載文件

復(fù)制代碼 代碼如下:


/*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 函數(shù)介紹:
class_implements — 返回指定的類實(shí)現(xiàn)的所有接口。
class_parents — 返回指定類的父類。
class_uses — Return the traits used by the given class
iterator_apply — 為迭代器中每個(gè)元素調(diào)用一個(gè)用戶自定義函數(shù)
iterator_count — 計(jì)算迭代器中元素的個(gè)數(shù)
iterator_to_array — 將迭代器中的元素拷貝到數(shù)組
spl_autoload_functions — 返回所有已注冊的__autoload()函數(shù)
spl_autoload_unregister — 注銷已注冊的__autoload()函數(shù)
spl_classes — 返回所有可用的SPL類
spl_object_hash — 返回指定對象的hash id

如iterator相關(guān)函數(shù)使用:

復(fù)制代碼 代碼如下:


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

看完上述內(nèi)容,你們掌握PHP中有哪些常用的SPL標(biāo)準(zhǔn)庫函數(shù)的方法了嗎?如果還想學(xué)到更多技能或想了解更多相關(guān)內(nèi)容,歡迎關(guān)注億速云行業(yè)資訊頻道,感謝各位的閱讀!

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

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI