���ѧۧݧ�ӧ�� �ާ֧ߧ֧էا֧� - ���֧էѧܧ�ڧ��ӧѧ�� - /home/rickpfrv/wiki.craftaro.com/vendor/wikimedia/remex-html/src/Tokenizer/PlainAttributes.php
���ѧ٧ѧ�
<?php namespace Wikimedia\RemexHtml\Tokenizer; /** * An Attributes implementation which is a simple array proxy. */ class PlainAttributes implements Attributes { protected $data; protected $attrObjects; public function __construct( $data = [] ) { $this->data = $data; } public function merge( Attributes $other ) { foreach ( $other as $name => $value ) { if ( !isset( $this[$name] ) ) { $this[$name] = $value; } } } public function offsetExists( $key ): bool { return isset( $this->data[$key] ); } public function &offsetGet( $key ): string { return $this->data[$key]; } public function offsetSet( $key, $value ): void { $this->data[$key] = $value; if ( $this->attrObjects !== null ) { $this->attrObjects[$key] = new Attribute( $key, null, null, $key, $value ); } } public function offsetUnset( $key ): void { unset( $this->data[$key] ); unset( $this->attrObjects[$key] ); } public function getIterator(): \ArrayIterator { return new \ArrayIterator( $this->data ); } public function getValues() { return $this->data; } public function getObjects() { if ( $this->attrObjects === null ) { $result = []; foreach ( $this->data as $name => $value ) { $result[$name] = new Attribute( $name, null, null, $name, $value ); } $this->attrObjects = $result; } return $this->attrObjects; } public function count() { return count( $this->data ); } public function clone() { return $this; } }
| ver. 1.4 |
Github
|
.
| PHP 7.4.33 | ���֧ߧ֧�ѧ�ڧ� ����ѧߧڧ��: 0.1 |
proxy
|
phpinfo
|
���ѧ����ۧܧ�