php arrayaccess接口 php array_product

php arrayaccess接口 php array_product

日期:2023-03-19 09:14:46    编辑:网络投稿    来源:互联网

PHP的ArrayAccess接口  如果想讓對象使用起來像一個 PHP 數組,那么我們需要實現 ArrayAccess 接口,就跟隨百分網小編一起去了解下吧,想了解更多相關信息請持續關注我們應屆畢

PHP的ArrayAccess接口

  如果想讓對象使用起來像一個 PHP 數組,那么我們需要實現 ArrayAccess 接口,就跟隨百分網小編一起去了解下吧,想了解更多相關信息請持續關注我們應屆畢業生考試網!

  代碼如下:

  interface ArrayAccess

  boolean offsetExists($index)

  mixed offsetGet($index)

  void offsetSet($index, $newvalue)

  void offsetUnset($index)

  下面的例子展示了如何使用這個接口,例子并不是完整的,但是足夠看懂,:->

  復制代碼 代碼如下:

  <?php

  class UserToSocialSecurity implements ArrayAccess

  {

  private $db;//一個包含著數據庫訪問方法的對象

  function offsetExists($name)

  {

  return $this->db->userExists($name);

  }

  function offsetGet($name)

  {

  return $this->db->getUserId($name);

  }

  function offsetSet($name, $id)

  {

  $this->db->setUserId($name, $id);

  }

  function offsetUnset($name)

  {

  $this->db->removeUser($name);

  }

  }

  $userMap = new UserToSocialSecurity();

  print "John's ID number is " . $userMap['John'];

  ?>

  實際上,當 $userMap['John'] 查找被執行時,PHP 調用了 offsetGet() 方法,由這個方法再來調用數據庫相關的 getUserId() 方法。

【PHP的ArrayAccess接口】相關文章:

PHP的漏洞-如何防止PHP漏洞09-22

Java接口介紹12-08

硬盤的接口類型10-09

CPU的接口類型10-07

php學習之php配置09-09

PHP的優點09-27

PHP的缺點09-27

PHP的變量09-20

介紹Java array接口11-29

Java中接口的知識匯總12-01