Home
last modified time | relevance | path

Searched refs:entity (Results 1 – 25 of 53) sorted by relevance

123

/PHP-8.1/Zend/tests/
H A Dbug40833.phpt5 class entity
26 private $entity;
28 function __construct($entity)
30 $this->entity = $entity;
35 $this->entity->whatever = null;
41 // $this->entity->{$this->name} = null;
58 $entity = new entity();
59 echo($entity->whatever[0]);
62 // $entity->whatever->clear();
63 unset($entity->whatever[0]);
[all …]
/PHP-8.1/ext/simplexml/tests/
H A D003.phpt11 <!ENTITY included-entity "This is text included from an entity">
19 &included-entity;
53 ["included-entity"]=>
55 ["included-entity"]=>
56 string(36) "This is text included from an entity"
/PHP-8.1/ext/dom/tests/
H A DDOMEntity_fields.phpt10 <!ENTITY sampleInternalEntity "This is a sample entity value.">
28 foreach ($entities as $entity) {
29 echo "Entity name: {$entity->nodeName}\n";
31 var_dump($entity->publicId);
33 var_dump($entity->systemId);
35 var_dump($entity->notationName);
37 var_dump($entity->actualEncoding);
39 var_dump($entity->encoding);
41 var_dump($entity->version);
H A Dproperty_write_errors.phpt29 $entity = new DOMEntity();
32 $entity->actualEncoding = null;
38 $entity->encoding = null;
44 $entity->version = null;
H A DDOMDocumentType_basic_001.phpt36 $entity = $entities->item(0);
37 print 'entity: '.$entity->nodeName."\n";
47 entity: logo
H A DDOMDocument_loadXML_variation4.phpt25 <!ENTITY entitest "entity is only for test purposes">
32 …uthor>John Steinbeck</author></book><book><title default="default title">entity is only for test p…
H A Ddomdocument_createentityreference_001.phpt2 DomDocument::CreateEntityReference() - Creates an entity reference with the appropriate name
H A DDOMDocument_createEntityReference_basic.phpt2 DOMDocument::createEntityReference() should create a new entity reference node
H A Dbug70001.phpt2 Bug #70001 (Assigning to DOMNode::textContent does additional entity encoding)
H A DDOMDocument_loadHTMLfile_error1.phpt18 %r(PHP ){0,1}%rWarning: DOMDocument::loadHTMLFile(): I/O warning : failed to load external entity %s
H A DDOMDocument_schemaValidate_error5.phpt20 Warning: DOMDocument::schemaValidate(): I/O warning : failed to load external entity "%snon-existen…
/PHP-8.1/ext/standard/tests/strings/
H A Dbug73817.phpt6 foreach ($entities as $entity) {
7 if (substr($entity, -1) !== ';') {
8 var_dump($entity);
/PHP-8.1/ext/mbstring/tests/
H A Dmb_substitute_character_variation_weak_types.phpt126 …haracter(): Argument #1 ($substitute_character) must be "none", "long", "entity" or a valid codepo…
128 …haracter(): Argument #1 ($substitute_character) must be "none", "long", "entity" or a valid codepo…
154 …haracter(): Argument #1 ($substitute_character) must be "none", "long", "entity" or a valid codepo…
156 …haracter(): Argument #1 ($substitute_character) must be "none", "long", "entity" or a valid codepo…
158 …haracter(): Argument #1 ($substitute_character) must be "none", "long", "entity" or a valid codepo…
160 …haracter(): Argument #1 ($substitute_character) must be "none", "long", "entity" or a valid codepo…
162 …haracter(): Argument #1 ($substitute_character) must be "none", "long", "entity" or a valid codepo…
164 …haracter(): Argument #1 ($substitute_character) must be "none", "long", "entity" or a valid codepo…
166 …haracter(): Argument #1 ($substitute_character) must be "none", "long", "entity" or a valid codepo…
H A Dmb_substitute_character.phpt22 var_dump(mb_substitute_character('entity'));
43 string(6) "entity"
45 mb_substitute_character(): Argument #1 ($substitute_character) must be "none", "long", "entity" or …
H A Dmb_substitute_character_variation_strict_types.phpt150 …haracter(): Argument #1 ($substitute_character) must be "none", "long", "entity" or a valid codepo…
152 …haracter(): Argument #1 ($substitute_character) must be "none", "long", "entity" or a valid codepo…
154 …haracter(): Argument #1 ($substitute_character) must be "none", "long", "entity" or a valid codepo…
156 …haracter(): Argument #1 ($substitute_character) must be "none", "long", "entity" or a valid codepo…
158 …haracter(): Argument #1 ($substitute_character) must be "none", "long", "entity" or a valid codepo…
160 …haracter(): Argument #1 ($substitute_character) must be "none", "long", "entity" or a valid codepo…
H A Dmb_substitute_character_basic.phpt39 mb_substitute_character(): Argument #1 ($substitute_character) must be "none", "long", "entity" or …
/PHP-8.1/ext/standard/
H A Dhtml.c745 while (s->entity) { in resolve_named_entity_html()
1036 *entity = NULL; in find_entity_for_char()
1044 *entity = (const unsigned char *)c->data.ent.entity; in find_entity_for_char()
1069 *entity = (const unsigned char *) s->normal_entry.entity; in find_entity_for_char()
1092 *entity = NULL; in find_entity_for_char_basic()
1097 *entity = (const unsigned char *) table[k].data.ent.entity; in find_entity_for_char_basic()
1427 memcpy(&entity[1], r->data.ent.entity, l); in write_s3row_data()
1428 entity[l + 1] = ';'; in write_s3row_data()
1438 entity[l + 1] = ';'; in write_s3row_data()
1459 memcpy(&entity[1], mcpr[i].normal_entry.entity, l); in write_s3row_data()
[all …]
/PHP-8.1/ext/mbstring/libmbfl/filters/
H A Dmbfilter_htmlent.c177 mbfl_html_entity_entry *entity; in mbfl_filt_conv_html_dec() local
240 entity = (mbfl_html_entity_entry *)mbfl_html_entity_list; in mbfl_filt_conv_html_dec()
241 while (entity->name) { in mbfl_filt_conv_html_dec()
242 if (!strcmp(buffer+1, entity->name)) { in mbfl_filt_conv_html_dec()
243 ent = entity->code; in mbfl_filt_conv_html_dec()
246 entity++; in mbfl_filt_conv_html_dec()
/PHP-8.1/ext/libxml/tests/
H A Dlibxml_set_external_entity_loader_variation1.phpt21 $entity = <<<ENT
26 function ($public, $system, $context) use($dtd,$entity){
32 fwrite($f, $first ? $dtd : $entity);
H A Dlibxml_disable_entity_loader.phpt43 Warning: DOMDocument::loadXML(): I/O warning : failed to load external entity "%s" in %s on line %d
45 Warning: DOMDocument::loadXML(): Failure to process entity xxe in Entity, line: %d in %s on line %d
H A Dbug61367-read.phpt59 Warning: DOMDocument::loadXML(): I/O warning : failed to load external entity "file:///%s/test_bug_…
61 Warning: DOMDocument::loadXML(): Failure to process entity file in Entity, line: 4 in %s on line %d
/PHP-8.1/ext/xml/
H A Dcompat.c342 _build_entity(const xmlChar *name, int len, xmlChar **entity, int *entity_len) in _build_entity() argument
345 *entity = xmlMalloc(*entity_len + 1); in _build_entity()
346 (*entity)[0] = '&'; in _build_entity()
347 memcpy(*entity+1, name, len); in _build_entity()
348 (*entity)[len+1] = ';'; in _build_entity()
349 (*entity)[*entity_len] = '\0'; in _build_entity()
382 xmlChar *entity; in _get_entity() local
385 _build_entity(name, xmlStrlen(name), &entity, &len); in _get_entity()
386 parser->h_default(parser->user, (const xmlChar *) entity, len); in _get_entity()
387 xmlFree(entity); in _get_entity()
/PHP-8.1/ext/dom/tests/manually_call_constructor/
H A Dentityreference.phpt2 Manually call __construct() - entity reference variation
/PHP-8.1/ext/soap/tests/bugs/
H A Dbug42151.phpt29 SOAP-ERROR: Parsing WSDL: Couldn't load from 'httpx://' : failed to load external entity "httpx://"
/PHP-8.1/ext/xml/tests/
H A Dbug71592.phpt2 Bug #71592 (External entity processing never fails)

Completed in 45 milliseconds

123