国产xxxx99真实实拍_久久不雅视频_高清韩国a级特黄毛片_嗯老师别我我受不了了小说

資訊專欄INFORMATION COLUMN

PHP SPL 筆記

hoohack / 1019人閱讀

摘要:界面包含四個必須部署的方法下面就是一個部署界面的實例使用方法如下運行結(jié)果如下可以看到,雖然是一個,但是完全可以像那樣操作。示例如下類也支持類方法和方法類和類類和類,只支持遍歷一維數(shù)組。

這幾天,我在學(xué)習(xí)PHP語言中的SPL。

這個東西應(yīng)該屬于PHP中的高級內(nèi)容,看上去很復(fù)雜,但是非常有用,所以我做了長篇筆記。不然記不住,以后要用的時候,還是要從頭學(xué)起。

由于這是供自己參考的筆記,不是教程,所以寫得比較簡單,沒有多解釋。但是我想,如果你是一個熟練的PHP5程序員,應(yīng)該足以看懂下面的材料,而且會發(fā)現(xiàn)它很有用。現(xiàn)在除此之外,網(wǎng)上根本沒有任何深入的SPL中文介紹。

===============================

第一部 簡介 1、什么是SPL?

</>復(fù)制代碼

  1. SPL是Standard PHP Library(PHP標(biāo)準(zhǔn)庫)的縮寫。

根據(jù)官方定義,它是"a collection of interfaces and classes that are meant to solve standard problems"。但是,目前在使用中,SPL更多地被看作是一種使object(物體)模仿array(數(shù)組)行為的interfaces和classes。

2、什么是Iterator?

</>復(fù)制代碼

  1. SPL的核心概念就是Iterator。通俗地說,Iterator能夠使許多不同的數(shù)據(jù)結(jié)構(gòu),都能有統(tǒng)一的操作界面,比如一個數(shù)據(jù)庫的結(jié)果集、同一個目錄中的文件集、或者一個文本中每一行構(gòu)成的集合。

如果按照普通情況,遍歷一個MySQL的結(jié)果集,程序需要這樣寫:

</>復(fù)制代碼

  1. // Fetch the "aggregate structure"
  2. $result = mysql_query("SELECT * FROM users");
  3. // Iterate over the structure
  4. while ( $row = mysql_fetch_array($result) ) {
  5. // do stuff with the row here
  6. }

讀出一個目錄中的內(nèi)容,需要這樣寫:

</>復(fù)制代碼

  1. // Fetch the "aggregate structure"
  2. $dh = opendir("/home/harryf/files");
  3. // Iterate over the structure
  4. while ( $file = readdir($dh) ) {
  5. // do stuff with the file here
  6. }

讀出一個文本文件的內(nèi)容,需要這樣寫:

</>復(fù)制代碼

  1. // Fetch the "aggregate structure"
  2. $dh = opendir("/home/harryf/files");
  3. // Iterate over the structure
  4. while ( $file = readdir($dh) ) {
  5. // do stuff with the file here
  6. }

上面三段代碼,雖然處理的是不同的resource(資源),但是功能都是遍歷結(jié)果集(loop over contents),因此Iterator的基本思想,就是將這三種不同的操作統(tǒng)一起來,用同樣的命令界面,處理不同的資源。

第二部分 SPL Interfaces 3、Iterator 接口

</>復(fù)制代碼

  1. SPL規(guī)定,所有部署了Iterator界面的class,都可以用在foreach Loop中。Iterator界面中包含5個必須部署的方法:

</>復(fù)制代碼

  1. * current()
  2. This method returns the current index"s value. You are solely
  3. responsible for tracking what the current index is as the
  4. interface does not do this for you.
  5. * key()
  6. This method returns the value of the current index"s key. For
  7. foreach loops this is extremely important so that the key
  8. value can be populated.
  9. * next()
  10. This method moves the internal index forward one entry.
  11. * rewind()
  12. This method should reset the internal index to the first element.
  13. * valid()
  14. This method should return true or false if there is a current
  15. element. It is called after rewind() or next().

下面就是一個部署了Iterator界面的class示例:

</>復(fù)制代碼

  1. /**
  2. * An iterator for native PHP arrays, re-inventing the wheel
  3. *
  4. * Notice the "implements Iterator" - important!
  5. */
  6. class ArrayReloaded implements Iterator {
  7. /**
  8. * A native PHP array to iterate over
  9. */
  10. private $array = array();
  11. /**
  12. * A switch to keep track of the end of the array
  13. */
  14. private $valid = FALSE;
  15. /**
  16. * Constructor
  17. * @param array native PHP array to iterate over
  18. */
  19. function __construct($array) {
  20. $this->array = $array;
  21. }
  22. /**
  23. * Return the array "pointer" to the first element
  24. * PHP"s reset() returns false if the array has no elements
  25. */
  26. function rewind(){
  27. $this->valid = (FALSE !== reset($this->array));
  28. }
  29. /**
  30. * Return the current array element
  31. */
  32. function current(){
  33. return current($this->array);
  34. }
  35. /**
  36. * Return the key of the current array element
  37. */
  38. function key(){
  39. return key($this->array);
  40. }
  41. /**
  42. * Move forward by one
  43. * PHP"s next() returns false if there are no more elements
  44. */
  45. function next(){
  46. $this->valid = (FALSE !== next($this->array));
  47. }
  48. /**
  49. * Is the current element valid?
  50. */
  51. function valid(){
  52. return $this->valid;
  53. }
  54. }

使用方法如下:

</>復(fù)制代碼

  1. // Create iterator object
  2. $colors = new ArrayReloaded(array ("red","green","blue",));
  3. // Iterate away!
  4. foreach ( $colors as $color ) {
  5. echo $color."
    ";
  6. }

你也可以在foreach循環(huán)中使用key()方法:

</>復(fù)制代碼

  1. // Display the keys as well
  2. foreach ( $colors as $key => $color ) {
  3. echo "$key: $color
    ";
  4. }

除了foreach循環(huán)外,也可以使用while循環(huán),

</>復(fù)制代碼

  1. // Reset the iterator - foreach does this automatically
  2. $colors->rewind();
  3. // Loop while valid
  4. while ( $colors->valid() ) {
  5. echo $colors->key().": ".$colors->current()."
  6. ";
  7. $colors->next();
  8. }

根據(jù)測試,while循環(huán)要稍快于foreach循環(huán),因為運行時少了一層中間調(diào)用。

4、ArrayAccess接口

</>復(fù)制代碼

  1. 部署ArrayAccess界面,可以使得object像array那樣操作。ArrayAccess界面包含四個必須部署的方法:

</>復(fù)制代碼

  1. * offsetExists($offset)
  2. This method is used to tell php if there is a value
  3. for the key specified by offset. It should return
  4. true or false.
  5. * offsetGet($offset)
  6. This method is used to return the value specified
  7. by the key offset.
  8. * offsetSet($offset, $value)
  9. This method is used to set a value within the object,
  10. you can throw an exception from this function for a
  11. read-only collection.
  12. * offsetUnset($offset)
  13. This method is used when a value is removed from
  14. an array either through unset() or assigning the key
  15. a value of null. In the case of numerical arrays, this
  16. offset should not be deleted and the array should
  17. not be reindexed unless that is specifically the
  18. behavior you want.

下面就是一個部署ArrayAccess界面的實例:

</>復(fù)制代碼

  1. /**
  2. * A class that can be used like an array
  3. */
  4. class Article implements ArrayAccess {
  5. public $title;
  6. public $author;
  7. public $category;
  8. function __construct($title,$author,$category) {
  9. $this->title = $title;
  10. $this->author = $author;
  11. $this->category = $category;
  12. }
  13. /**
  14. * Defined by ArrayAccess interface
  15. * Set a value given it"s key e.g. $A["title"] = "foo";
  16. * @param mixed key (string or integer)
  17. * @param mixed value
  18. * @return void
  19. */
  20. function offsetSet($key, $value) {
  21. if ( array_key_exists($key,get_object_vars($this)) ) {
  22. $this->{$key} = $value;
  23. }
  24. }
  25. /**
  26. * Defined by ArrayAccess interface
  27. * Return a value given it"s key e.g. echo $A["title"];
  28. * @param mixed key (string or integer)
  29. * @return mixed value
  30. */
  31. function offsetGet($key) {
  32. if ( array_key_exists($key,get_object_vars($this)) ) {
  33. return $this->{$key};
  34. }
  35. }
  36. /**
  37. * Defined by ArrayAccess interface
  38. * Unset a value by it"s key e.g. unset($A["title"]);
  39. * @param mixed key (string or integer)
  40. * @return void
  41. */
  42. function offsetUnset($key) {
  43. if ( array_key_exists($key,get_object_vars($this)) ) {
  44. unset($this->{$key});
  45. }
  46. }
  47. /**
  48. * Defined by ArrayAccess interface
  49. * Check value exists, given it"s key e.g. isset($A["title"])
  50. * @param mixed key (string or integer)
  51. * @return boolean
  52. */
  53. function offsetExists($offset) {
  54. return array_key_exists($offset,get_object_vars($this));
  55. }
  56. }

使用方法如下:

</>復(fù)制代碼

  1. // Create the object
  2. $A = new Article("SPL Rocks","Joe Bloggs", "PHP");
  3. // Check what it looks like
  4. echo "Initial State:
    ";
  5. print_r($A);
  6. echo "";
  7. // Change the title using array syntax
  8. $A["title"] = "SPL _really_ rocks";
  9. // Try setting a non existent property (ignored)
  10. $A["not found"] = 1;
  11. // Unset the author field
  12. unset($A["author"]);
  13. // Check what it looks like again
  14. echo "Final State:
    ";
  15. print_r($A);
  16. echo "";

運行結(jié)果如下:

</>復(fù)制代碼

  1. Initial State:
  2. Article Object
  3. (
  4. [title] => SPL Rocks
  5. [author] => Joe Bloggs
  6. [category] => PHP
  7. )
  8. Final State:
  9. Article Object
  10. (
  11. [title] => SPL _really_ rocks
  12. [category] => PHP
  13. )

可以看到,$A雖然是一個object,但是完全可以像array那樣操作。
你還可以在讀取數(shù)據(jù)時,增加程序內(nèi)部的邏輯:

</>復(fù)制代碼

  1. function offsetGet($key) {
  2. if ( array_key_exists($key,get_object_vars($this)) ) {
  3. return strtolower($this->{$key});
  4. }
  5. }
5、IteratorAggregate 接口

雖然$A可以像數(shù)組那樣操作,卻無法使用foreach遍歷,除非部署了前面提到的Iterator界面。

另一個解決方法是,有時會需要將數(shù)據(jù)和遍歷部分分開,這時就可以部署IteratorAggregate界面。它規(guī)定了一個getIterator()方法,返回一個使用Iterator界面的object。

還是以上一節(jié)的Article類為例

</>復(fù)制代碼

  1. class Article implements ArrayAccess, IteratorAggregate {
  2. /**
  3. * Defined by IteratorAggregate interface
  4. * Returns an iterator for for this object, for use with foreach
  5. * @return ArrayIterator
  6. */
  7. function getIterator() {
  8. return new ArrayIterator($this);
  9. }

使用方法如下:

</>復(fù)制代碼

  1. $A = new Article("SPL Rocks","Joe Bloggs", "PHP");
  2. // Loop (getIterator will be called automatically)
  3. echo "Looping with foreach:
    ";
  4. foreach ( $A as $field => $value ) {
  5. echo "$field : $value
    ";
  6. }
  7. echo "";
  8. // Get the size of the iterator (see how many properties are left)
  9. echo "Object has ".sizeof($A->getIterator())." elements";

顯示結(jié)果如下:

</>復(fù)制代碼

  1. Looping with foreach:
  2. title : SPL Rocks
  3. author : Joe Bloggs
  4. category : PHP
  5. Object has 3 elements
6、RecursiveIterator 接口

這個接口用于遍歷多層數(shù)據(jù),它繼承了Iterator界面,因而也具有標(biāo)準(zhǔn)的current()、key()、next()、 rewind()和valid()方法。同時,它自己還規(guī)定了getChildren()和hasChildren()方法。The getChildren() method must return an object that implements RecursiveIterator.

7、SeekableIterator接口

SeekableIterator界面也是Iterator界面的延伸,除了Iterator的5個方法以外,還規(guī)定了seek()方法,參數(shù)是元素的位置,返回該元素。如果該位置不存在,則拋出OutOfBoundsException。

下面是一個是實例:

</>復(fù)制代碼

  1. rewind();
  2. $position = 0;
  3. while ($position < $index && $this->valid()) {
  4. $this->next();
  5. $position++;
  6. }
  7. if (!$this->valid()) {
  8. throw new OutOfBoundsException("Invalid position");
  9. }
  10. }
  11. // Implement current(), key(), next(), rewind()
  12. // and valid() to iterate over data in $member
  13. }
  14. ?>
8、Countable 接口

這個接口規(guī)定了一個count()方法,返回結(jié)果集的數(shù)量。

第三部分 SPL Classes 9、SPL的內(nèi)置類

</>復(fù)制代碼

  1. SPL除了定義一系列Interfaces以外,還提供一系列的內(nèi)置類,它們對應(yīng)不同的任務(wù),大大簡化了編程。

查看所有的內(nèi)置類,可以使用下面的代碼:

</>復(fù)制代碼

  1. $value)
  2. {
  3. echo $key." -> ".$value."
    ";
  4. }
  5. ?>
10、 DirectoryIterator類

這個類用來查看一個目錄中的所有文件和子目錄:

</>復(fù)制代碼

  1. ";
  2. }
  3. }
  4. /*** if an exception is thrown, catch it here ***/
  5. catch(Exception $e){
  6. echo "No files Found!
    ";
  7. }
  8. ?>

查看文件的詳細(xì)信息:

</>復(fù)制代碼

  1. getFilename() == "foo.txt" )
  2. {
  3. echo "";
  4. echo "";
  5. echo "";
  6. echo "";
  7. echo "";
  8. echo "";
  9. echo "";
  10. echo "";
  11. echo "";
  12. echo "";
  13. echo "";
  14. echo "";
  15. echo "";
  16. echo "";
  17. echo "";
  18. echo "";
  19. echo "";
  20. echo "";
  21. echo "";
  22. echo "";
  23. echo "";
  24. echo "";
  25. echo "";
  26. echo "";
  27. echo "";
  28. echo "";
  29. }
  30. }
  31. ?>
  32. getFilename() "; var_dump($file->getFilename()); echo "
    getBasename() "; var_dump($file->getBasename()); echo "
    isDot() "; var_dump($file->isDot()); echo "
    __toString() "; var_dump($file->__toString()); echo "
    getPath() "; var_dump($file->getPath()); echo "
    getPathname() "; var_dump($file->getPathname()); echo "
    getPerms() "; var_dump($file->getPerms()); echo "
    getInode() "; var_dump($file->getInode()); echo "
    getSize() "; var_dump($file->getSize()); echo "
    getOwner() "; var_dump($file->getOwner()); echo "
    $file->getGroup() "; var_dump($file->getGroup()); echo "
    getATime() "; var_dump($file->getATime()); echo "
    getMTime() "; var_dump($file->getMTime()); echo "
    getCTime() "; var_dump($file->getCTime()); echo "
    getType() "; var_dump($file->getType()); echo "
    isWritable() "; var_dump($file->isWritable()); echo "
    isReadable() "; var_dump($file->isReadable()); echo "
    isExecutable( "; var_dump($file->isExecutable()); echo "
    isFile() "; var_dump($file->isFile()); echo "
    isDir() "; var_dump($file->isDir()); echo "
    isLink() "; var_dump($file->isLink()); echo "
    getFileInfo() "; var_dump($file->getFileInfo()); echo "
    getPathInfo() "; var_dump($file->getPathInfo()); echo "
    openFile() "; var_dump($file->openFile()); echo "
    setFileClass() "; var_dump($file->setFileClass()); echo "
    setInfoClass() "; var_dump($file->setInfoClass()); echo "

除了foreach循環(huán)外,還可以使用while循環(huán):

</>復(fù)制代碼

  1. valid())
  2. {
  3. echo $it->key()." -- ".$it->current()."
    ";
  4. /*** move to the next iteration ***/
  5. $it->next();
  6. }
  7. ?>

如果要過濾所有子目錄,可以在valid()方法中過濾:

</>復(fù)制代碼

  1. valid())
  2. {
  3. /*** check if value is a directory ***/
  4. if($it->isDir())
  5. {
  6. /*** echo the key and current value ***/
  7. echo $it->key()." -- ".$it->current()."
    ";
  8. }
  9. /*** move to the next iteration ***/
  10. $it->next();
  11. }
  12. ?>
11、ArrayObject類

這個類可以將Array轉(zhuǎn)化為object。

</>復(fù)制代碼

  1. getIterator();
  2. /*** check if valid ***/
  3. $iterator->valid();
  4. /*** move to the next array member ***/
  5. $iterator->next())
  6. {
  7. /*** output the key and current array value ***/
  8. echo $iterator->key() . " => " . $iterator->current() . "
    ";
  9. }
  10. ?>

增加一個元素:

</>復(fù)制代碼

  1. $arrayObj->append("dingo");
12、ArrayIterator類

</>復(fù)制代碼

  1. 這個類實際上是對ArrayObject類的補充,為后者提供遍歷功能。

示例如下:

</>復(fù)制代碼

  1. $value)
  2. {
  3. echo $key." => ".$value."
    ";
  4. }
  5. }
  6. catch (Exception $e)
  7. {
  8. echo $e->getMessage();
  9. }
  10. ?>

ArrayIterator類也支持offset類方法和count()方法:

</>復(fù)制代碼

    • offSetExists(2))
    • {
    • /*** set the offset of 2 to a new value ***/
    • $object->offSetSet(2, "Goanna");
    • }
    • /*** unset the kiwi ***/
    • foreach($object as $key=>$value)
    • {
    • /*** check the value of the key ***/
    • if($object->offSetGet($key) === "kiwi")
    • {
    • /*** unset the current key ***/
    • $object->offSetUnset($key);
    • }
    • echo "
    • ".$key." - ".$value."
    • "."
    • ";
    • }
    • }
    • catch (Exception $e)
    • {
    • echo $e->getMessage();
    • }
    • ?>
13、RecursiveArrayIterator類和RecursiveIteratorIterator類

ArrayIterator類和ArrayObject類,只支持遍歷一維數(shù)組。如果要遍歷多維數(shù)組,必須先用RecursiveIteratorIterator生成一個Iterator,然后再對這個Iterator使用RecursiveIteratorIterator。

</>復(fù)制代碼

  1. "butch", "sex"=>"m", "breed"=>"boxer"),
  2. array("name"=>"fido", "sex"=>"m", "breed"=>"doberman"),
  3. array("name"=>"girly","sex"=>"f", "breed"=>"poodle")
  4. );
  5. foreach(new RecursiveIteratorIterator(new RecursiveArrayIterator($array)) as $key=>$value)
  6. {
  7. echo $key." -- ".$value."
    ";
  8. }
  9. ?>
14、 FilterIterator類

FilterIterator類可以對元素進行過濾,只要在accept()方法中設(shè)置過濾條件就可以了。

示例如下:

</>復(fù)制代碼

  1. "kiwi", "kookaburra", "platypus");
  2. class CullingIterator extends FilterIterator{
  3. /*** The filteriterator takes a iterator as param: ***/
  4. public function __construct( Iterator $it ){
  5. parent::__construct( $it );
  6. }
  7. /*** check if key is numeric ***/
  8. function accept(){
  9. return is_numeric($this->key());
  10. }
  11. }/*** end of class ***/
  12. $cull = new CullingIterator(new ArrayIterator($animals));
  13. foreach($cull as $key=>$value)
  14. {
  15. echo $key." == ".$value."
    ";
  16. }
  17. ?>

下面是另一個返回質(zhì)數(shù)的例子

</>復(fù)制代碼

  1. current() % 2 != 1)
  2. {
  3. return false;
  4. }
  5. $d = 3;
  6. $x = sqrt($this->current());
  7. while ($this->current() % $d != 0 && $d < $x)
  8. {
  9. $d += 2;
  10. }
  11. return (($this->current() % $d == 0 && $this->current() != $d) * 1) == 0 ? true : false;
  12. }
  13. }/*** end of class ***/
  14. /*** an array of numbers ***/
  15. $numbers = range(212345,212456);
  16. /*** create a new FilterIterator object ***/
  17. $primes = new primeFilter(new ArrayIterator($numbers));
  18. foreach($primes as $value)
  19. {
  20. echo $value." is prime.
    ";
  21. }
  22. ?>
15、SimpleXMLIterator類

這個類用來遍歷xml文件。

</>復(fù)制代碼

  1. Phascolarctidae
  2. koala
  3. Bruce
  4. macropod
  5. kangaroo
  6. Bruce
  7. diprotodon
  8. wombat
  9. Bruce
  10. macropod
  11. wallaby
  12. Bruce
  13. dromaius
  14. emu
  15. Bruce
  16. Apteryx
  17. kiwi
  18. Troy
  19. kingfisher
  20. kookaburra
  21. Bruce
  22. monotremes
  23. platypus
  24. Bruce
  25. arachnid
  26. funnel web
  27. Bruce
  28. 8
  29. XML;
  30. /*** a new simpleXML iterator object ***/
  31. try {
  32. /*** a new simple xml iterator ***/
  33. $it = new SimpleXMLIterator($xmlstring);
  34. /*** a new limitIterator object ***/
  35. foreach(new RecursiveIteratorIterator($it,1) as $name => $data)
  36. {
  37. echo $name." -- ".$data."
    ";
  38. }
  39. }
  40. catch(Exception $e)
  41. {
  42. echo $e->getMessage();
  43. }
  44. ?>

new RecursiveIteratorIterator($it,1)表示顯示所有包括父元素在內(nèi)的子元素。

顯示某一個特定的元素值,可以這樣寫:

</>復(fù)制代碼

  1. $v)
  2. {
  3. echo $v->species."
    ";
  4. }
  5. }
  6. }
  7. catch(Exception $e)
  8. {
  9. echo $e->getMessage();
  10. }
  11. ?>

相對應(yīng)的while循環(huán)寫法為

</>復(fù)制代碼

  1. rewind(); $sxe->valid(); $sxe->next())
  2. {
  3. if($sxe->hasChildren())
  4. {
  5. foreach($sxe->getChildren() as $element=>$value)
  6. {
  7. echo $value->species."
    ";
  8. }
  9. }
  10. }
  11. }
  12. catch(Exception $e)
  13. {
  14. echo $e->getMessage();
  15. }
  16. ?>

最方便的寫法,還是使用xpath:

</>復(fù)制代碼

  1. xpath("animal/category/species");
  2. /*** iterate over the xpath ***/
  3. foreach ($foo as $k=>$v)
  4. {
  5. echo $v."
    ";
  6. }
  7. }
  8. catch(Exception $e)
  9. {
  10. echo $e->getMessage();
  11. }
  12. ?>

下面的例子,顯示有namespace的情況:

</>復(fù)制代碼

  1. Phascolarctidae
  2. Speed Hump
  3. koala
  4. Bruce
  5. macropod
  6. Boonga
  7. kangaroo
  8. Bruce
  9. diprotodon
  10. pot holer
  11. wombat
  12. Bruce
  13. macropod
  14. Target
  15. wallaby
  16. Bruce
  17. dromaius
  18. Road Runner
  19. emu
  20. Bruce
  21. Apteryx
  22. Football
  23. kiwi
  24. Troy
  25. kingfisher
  26. snaker
  27. kookaburra
  28. Bruce
  29. monotremes
  30. Swamp Rat
  31. platypus
  32. Bruce
  33. arachnid
  34. Killer
  35. funnel web
  36. Bruce
  37. 8
  38. XML;
  39. /*** a new simpleXML iterator object ***/
  40. try {
  41. /*** a new simpleXML iterator object ***/
  42. $sxi = new SimpleXMLIterator($xmlstring);
  43. $sxi-> registerXPathNamespace("spec", "http://www.exampe.org/species-title");
  44. /*** set the xpath ***/
  45. $result = $sxi->xpath("http://spec:name");
  46. /*** get all declared namespaces ***/
  47. foreach($sxi->getDocNamespaces("animal") as $ns)
  48. {
  49. echo $ns."
    ";
  50. }
  51. /*** iterate over the xpath ***/
  52. foreach ($result as $k=>$v)
  53. {
  54. echo $v."
    ";
  55. }
  56. }
  57. catch(Exception $e)
  58. {
  59. echo $e->getMessage();
  60. }
  61. ?>

增加一個節(jié)點:

</>復(fù)制代碼

  1. koala
  2. kangaroo
  3. wombat
  4. wallaby
  5. emu
  6. kiwi
  7. kookaburra
  8. platypus
  9. funnel web
  10. XML;
  11. try {
  12. /*** a new simpleXML iterator object ***/
  13. $sxi = new SimpleXMLIterator($xmlstring);
  14. /*** add a child ***/
  15. $sxi->addChild("animal", "Tiger");
  16. /*** a new simpleXML iterator object ***/
  17. $new = new SimpleXmlIterator($sxi->saveXML());
  18. /*** iterate over the new tree ***/
  19. foreach($new as $val)
  20. {
  21. echo $val."
    ";
  22. }
  23. }
  24. catch(Exception $e)
  25. {
  26. echo $e->getMessage();
  27. }
  28. ?>

增加屬性:

</>復(fù)制代碼

  1. koala
  2. kangaroo
  3. wombat
  4. wallaby
  5. emu
  6. kiwi
  7. kookaburra
  8. platypus
  9. funnel web
  10. XML;
  11. try {
  12. /*** a new simpleXML iterator object ***/
  13. $sxi = new SimpleXMLIterator($xmlstring);
  14. /*** add an attribute with a namespace ***/
  15. $sxi->addAttribute("id:att1", "good things", "urn::test-foo");
  16. /*** add an attribute without a namespace ***/
  17. $sxi->addAttribute("att2", "no-ns");
  18. echo htmlentities($sxi->saveXML());
  19. }
  20. catch(Exception $e)
  21. {
  22. echo $e->getMessage();
  23. }
  24. ?>
16、CachingIterator類

這個類有一個hasNext()方法,用來判斷是否還有下一個元素。

示例如下:

</>復(fù)制代碼

  1. hasNext())
  2. {
  3. echo ",";
  4. }
  5. }
  6. }
  7. catch (Exception $e)
  8. {
  9. echo $e->getMessage();
  10. }
  11. ?>
17、LimitIterator類

這個類用來限定返回結(jié)果集的數(shù)量和位置,必須提供offset和limit兩個參數(shù),與SQL命令中l(wèi)imit語句類似。

示例如下:

</>復(fù)制代碼

  1. $v)
  2. {
  3. echo $it->getPosition()."
    ";
  4. }
  5. ?>

另一個例子是:

</>復(fù)制代碼

  1. seek(5);
  2. echo $it->current();
  3. }
  4. catch(OutOfBoundsException $e)
  5. {
  6. echo $e->getMessage() . "
    ";
  7. }
  8. ?>
18、SplFileObject類

這個類用來對文本文件進行遍歷。

示例如下:

</>復(fù)制代碼

  1. ";
  2. }
  3. catch (Exception $e)
  4. {
  5. echo $e->getMessage();
  6. }
  7. ?>

返回文本文件的第三行,可以這樣寫:

</>復(fù)制代碼

  1. seek(3);
  2. echo $file->current();
  3. }
  4. catch (Exception $e)
  5. {
  6. echo $e->getMessage();
  7. }
  8. ?>

[參考文獻(xiàn)]

Introduction to Standard PHP Library (SPL), By Kevin Waterson

Introducing PHP 5"s Standard Library, By Harry Fuecks

The Standard PHP Library (SPL), By Ben Ramsey

SPL - Standard PHP Library Documentation

文章版權(quán)歸作者所有,未經(jīng)允許請勿轉(zhuǎn)載,若此文章存在違規(guī)行為,您可以聯(lián)系管理員刪除。

轉(zhuǎn)載請注明本文地址:http://m.specialneedsforspecialkids.com/yun/28303.html

相關(guān)文章

  • PHP - Pimple 源碼筆記(上)

    摘要:也就是閑時為了寫文章而寫的一篇關(guān)于源碼的閱讀筆記。是標(biāo)準(zhǔn)庫的縮寫,一組旨在解決標(biāo)準(zhǔn)問題的接口和類的集合。提供了一套標(biāo)準(zhǔn)的數(shù)據(jù)結(jié)構(gòu),一組遍歷對象的迭代器,一組接口,一組標(biāo)準(zhǔn)的異常,一系列用于處理文件的類,提供了一組函數(shù),具體可以查看文檔。 也就是閑時為了寫文章而寫的一篇關(guān)于 Pimple 源碼的閱讀筆記。Pimple 代碼有兩種編碼方式,一種是以 PHP 編寫的,另一種是以 C 擴展編寫...

    cfanr 評論0 收藏0
  • PHP autoload 機制詳解

    摘要:但現(xiàn)在問題來了,如果在一個系統(tǒng)的實現(xiàn)中,如果需要使用很多其它的類庫,這些類庫可能是由不同的開發(fā)人員編寫的,其類名與實際的磁盤文件的映射規(guī)則不盡相同。 PHP在魔術(shù)函數(shù)__autoload()方法出現(xiàn)以前,如果你要在一個程序文件中實例化100個對象,那么你必須用include或者require包含進來100個類文件,或者你把這100個類定義在同一個類文件中——相信這個文件一定會非常大。但...

    psychola 評論0 收藏0
  • (轉(zhuǎn))詳解spl_autoload_register()函數(shù)

    摘要:看到一篇不錯的博文,轉(zhuǎn)載過來,可以通過這個自動加載函數(shù)來理解的類自動加載原理。在了解這個函數(shù)之前先來看另一個函數(shù)。調(diào)用靜態(tài)方法另一種寫法小結(jié)實例化時會被自動觸發(fā)該函數(shù),如果沒有執(zhí)行的對象時,就會執(zhí)行該方法。 看到一篇不錯的博文,轉(zhuǎn)載過來,可以通過這個自動加載函數(shù)spl_autoload_register()來理解PHP的類自動加載原理。 在了解這個函數(shù)之前先來看另一個函數(shù):__auto...

    xcc3641 評論0 收藏0
  • SPL標(biāo)準(zhǔn)庫專題(1)】SPL簡介

    摘要:什么是是標(biāo)準(zhǔn)庫的縮寫。根據(jù)官方定義,它是是用于解決典型問題的一組接口與類的集合。而的對象則嚴(yán)格以堆棧的形式描述數(shù)據(jù),并提供對應(yīng)的方法。返回所有已注冊的函數(shù)。 什么是SPL SPL是Standard PHP Library(PHP標(biāo)準(zhǔn)庫)的縮寫。 根據(jù)官方定義,它是a collection of interfaces and classes that are meant to solve...

    GeekGhc 評論0 收藏0
  • PHP設(shè)計模式——觀察者模式

    摘要:設(shè)計觀察者模式是為了讓一個對象跟蹤某個狀態(tài),知道狀態(tài)何時改變,一旦狀態(tài)改變,所有訂閱對象都能得到通知。類與觀察者設(shè)計模式?jīng)]有內(nèi)在的關(guān)系,不過通過它其內(nèi)置的和方法可以很方便的將觀察者實例與一個主題實例相關(guān)聯(lián)以及解除關(guān)聯(lián)。 前言 知識就是作為觀察者所獲得的結(jié)論,經(jīng)過科學(xué)培訓(xùn)的觀察者會為我們提供所有能感知的現(xiàn)實。設(shè)計觀察者模式是為了讓一個對象跟蹤某個狀態(tài),知道狀態(tài)何時改變,一旦狀態(tài)改變,所有...

    Barrior 評論0 收藏0

發(fā)表評論

0條評論

最新活動
閱讀需要支付1元查看
<