/PHP-5.3/Zend/tests/ |
H A D | bug40833.phpt | 5 class entity 26 private $entity; 28 function __construct($entity) 30 $this->entity = $entity; 31 $this->entity->whatever = $this; 35 $this->entity->whatever = null; 58 $entity = new entity(); 59 echo($entity->whatever[0]); 62 // $entity->whatever->clear(); 63 unset($entity->whatever[0]); [all …]
|
/PHP-5.3/ext/simplexml/tests/ |
H A D | 003.phpt | 11 <!ENTITY included-entity "This is text included from an entity"> 19 &included-entity; 54 ["included-entity"]=> 56 ["included-entity"]=> 57 string(36) "This is text included from an entity"
|
/PHP-5.3/ext/dom/tests/ |
H A D | DOMDocumentType_basic_001.phpt | 36 $entity = $entities->item(0); 37 print 'entity: '.$entity->nodeName."\n"; 47 entity: logo
|
H A D | domdocument_createentityreference_001.phpt | 2 DomDocument::CreateEntityReference() - Creates an entity reference with the appropriate name
|
H A D | DOMDocument_createEntityReference_basic.phpt | 2 DOMDocument::createEntityReference() should create a new entity reference node
|
H A D | DOMDocument_relaxNGValidate_error2.phpt | 26 Warning: DOMDocument::relaxNGValidate(): I/O warning : failed to load external entity "%s/foo.rng" …
|
H A D | DOMDocument_schemaValidate_error5.phpt | 20 Warning: DOMDocument::schemaValidate(): I/O warning : failed to load external entity "%snon-existan…
|
/PHP-5.3/ext/mbstring/libmbfl/filters/ |
H A D | mbfilter_htmlent.c | 182 mbfl_html_entity_entry *entity; in mbfl_filt_conv_html_dec() local 245 entity = (mbfl_html_entity_entry *)mbfl_html_entity_list; in mbfl_filt_conv_html_dec() 246 while (entity->name) { in mbfl_filt_conv_html_dec() 247 if (!strcmp(buffer+1, entity->name)) { in mbfl_filt_conv_html_dec() 248 ent = entity->code; in mbfl_filt_conv_html_dec() 251 entity++; in mbfl_filt_conv_html_dec()
|
/PHP-5.3/ext/mbstring/tests/ |
H A D | mb_substitute_character.phpt | 25 var_dump(mb_substitute_character('entity')); 42 string(6) "entity"
|
H A D | htmlent.phpt | 27 // and they do not have a named entity representaion.
|
/PHP-5.3/ext/xml/ |
H A D | compat.c | 352 _build_entity(const xmlChar *name, int len, xmlChar **entity, int *entity_len) in _build_entity() argument 355 *entity = xmlMalloc(*entity_len + 1); in _build_entity() 356 (*entity)[0] = '&'; in _build_entity() 357 memcpy(*entity+1, name, len); in _build_entity() 358 (*entity)[len+1] = ';'; in _build_entity() 359 (*entity)[*entity_len] = '\0'; in _build_entity() 389 xmlChar *entity; in _get_entity() local 392 _build_entity(name, xmlStrlen(name), &entity, &len); in _get_entity() 393 parser->h_default(parser->user, (const xmlChar *) entity, len); in _get_entity() 394 xmlFree(entity); in _get_entity()
|
/PHP-5.3/ext/libxml/tests/ |
H A D | bug61367-read.phpt | 56 Warning: DOMDocument::loadXML(): I/O warning : failed to load external entity "file:///%s/test_bug_… 58 Warning: DOMDocument::loadXML(): Failure to process entity file in Entity, line: 4 in %s on line %d
|
/PHP-5.3/ext/standard/ |
H A D | html.c | 455 char *entity; member 469 char entity[8]; member 943 unsigned char entity[32]; in php_unescape_html_entities() local 949 …entity_length = slprintf(entity, sizeof(entity), "&%s;", entity_map[j].table[k - entity_map[j].bas… in php_unescape_html_entities() 950 if (entity_length >= sizeof(entity)) { in php_unescape_html_entities() 988 if (php_memnstr(ret, entity, entity_length, ret+retlen)) { in php_unescape_html_entities() 1247 memcpy(replaced + len, basic_entities[j].entity, basic_entities[j].entitylen); in php_escape_html_entities_ex() 1345 memcpy(basic_entities_dec[j].entity, basic_entities[i].entity, basic_entities[i].entitylen + 1); in PHP_FUNCTION() 1351 memcpy(basic_entities_dec[j].entity, "&", sizeof("&")); in PHP_FUNCTION() 1361 if (!memcmp(p, basic_entities_dec[j].entity, basic_entities_dec[j].entitylen)) { in PHP_FUNCTION() [all …]
|
/PHP-5.3/ext/soap/tests/bugs/ |
H A D | bug42151.phpt | 29 SOAP-ERROR: Parsing WSDL: Couldn't load from 'httpx://' : failed to load external entity "httpx://"
|
H A D | bug34657.phpt | 32 Warning: SoapClient::SoapClient(): I/O warning : failed to load external entity "http://i_dont_exis…
|
/PHP-5.3/ext/dom/ |
H A D | config.w32 | 12 domimplementationlist.c entity.c nodelist.c text.c comment.c \
|
H A D | config.m4 | 26 documenttype.c domimplementationlist.c entity.c \
|
/PHP-5.3/ext/xml/tests/ |
H A D | xml_set_external_entity_ref_handler_error.phpt | 12 * Description: Set up external entity reference handler
|
H A D | xml_set_unparsed_entity_decl_handler_error.phpt | 12 * Description: Set up unparsed entity declaration handler
|
H A D | xml001.phpt | 91 ]}{CDATA[ ]}{ENTREF[&included-entity;]}{CDATA[
|
H A D | xml003.phpt | 90 ]}{CDATA[ ]}{ENTREF[&included-entity;]}{CDATA[
|
H A D | xml002.phpt | 92 ]}{CDATA[ ]}{ENTREF[&included-entity;]}{CDATA[
|
H A D | xml_set_external_entity_ref_handler_variation1.phpt | 12 * Description: Set up external entity reference handler
|
/PHP-5.3/tests/lang/ |
H A D | foreachLoopObjects.006.phpt | 2 Foreach loop tests - substituting the entire iterated entity during the loop.
|
H A D | foreachLoop.016.phpt | 2 Ensure foreach splits the iterated entity from its cow reference set, for all sorts of iterated ent…
|