Home
last modified time | relevance | path

Searched refs:tag (Results 1 – 25 of 119) sorted by last modified time

12345

/PHP-8.0/
H A Dconfigure.ac915 [Disable the short-form <? start tag by default])],
H A DCONTRIBUTING.md103 should be credited, the `Co-authored-by` tag in the commit message may be used.
H A Dphp.ini-development192 ; Note that this directive does not control the <?= shorthand tag, which can be
197 ; http://php.net/short-open-tag
245 ; "form" tag is special tag. It will add hidden input tag to pass values.
1480 ; to URLs. <form> tag's action attribute URL will not be modified
H A Dphp.ini-production192 ; Note that this directive does not control the <?= shorthand tag, which can be
197 ; http://php.net/short-open-tag
245 ; "form" tag is special tag. It will add hidden input tag to pass values.
1482 ; to URLs. <form> tag's action attribute URL will not be modified
/PHP-8.0/ext/openssl/
H A Dopenssl.c7110 if (!enc && tag && tag_len > 0) { in php_openssl_cipher_init()
7200 zval *tag, zend_long tag_len, in php_openssl_encrypt() argument
7248 if (mode.is_aead && tag) { in php_openssl_encrypt()
7254 ZEND_TRY_ASSIGN_REF_NEW_STR(tag, tag_str); in php_openssl_encrypt()
7261 } else if (tag) { in php_openssl_encrypt()
7262 ZEND_TRY_ASSIGN_REF_NULL(tag); in php_openssl_encrypt()
7292 zval *tag = NULL; in PHP_FUNCTION() local
7313 const char *tag, zend_long tag_len, in php_openssl_decrypt() argument
7327 PHP_OPENSSL_CHECK_SIZE_T_TO_INT_NULL_RETURN(tag_len, tag); in php_openssl_decrypt()
7357 &iv, &iv_len, &free_iv, tag, tag_len, options, 0) == FAILURE || in php_openssl_decrypt()
[all …]
H A Dopenssl_arginfo.h334 ZEND_ARG_INFO_WITH_DEFAULT_VALUE(1, tag, "null")
345 ZEND_ARG_TYPE_INFO_WITH_DEFAULT_VALUE(0, tag, IS_STRING, 0, "\"\"")
H A Dopenssl.stub.php200 /** @param string $tag */
201 …ing $cipher_algo, string $passphrase, int $options = 0, string $iv = "", &$tag = null, string $aad… argument
203 …ipher_algo, string $passphrase, int $options = 0, string $iv = "", string $tag = "", string $aad =… argument
H A Dphp_openssl.h103 zval *tag, zend_long tag_len,
111 const char *tag, zend_long tag_len,
/PHP-8.0/Zend/
H A Dzend_weakrefs.c59 void *ptr, uintptr_t tag, zend_ulong obj_addr) in zend_weakref_unref_single() argument
61 if (tag == ZEND_WEAKREF_TAG_REF) { in zend_weakref_unref_single()
65 ZEND_ASSERT(tag == ZEND_WEAKREF_TAG_MAP); in zend_weakref_unref_single()
72 uintptr_t tag = ZEND_WEAKREF_GET_TAG(tagged_ptr); in zend_weakref_unref() local
73 if (tag == ZEND_WEAKREF_TAG_HT) { in zend_weakref_unref()
82 zend_weakref_unref_single(ptr, tag, obj_addr); in zend_weakref_unref()
118 uintptr_t tag = ZEND_WEAKREF_GET_TAG(tagged_ptr); in zend_weakref_unregister() local
119 if (tag != ZEND_WEAKREF_TAG_HT) { in zend_weakref_unregister()
125 zend_weakref_unref_single(ptr, tag, obj_addr); in zend_weakref_unregister()
208 if (tag == ZEND_WEAKREF_TAG_REF) { in zend_weakref_find()
[all …]
/PHP-8.0/ext/ffi/
H A Dffi.c2302 efree(tag); in zend_ffi_tag_hash_dtor()
2310 free(tag); in zend_ffi_tag_hash_persistent_dtor()
3071 if (old->kind != tag->kind) { in zend_ffi_same_tags()
3124 zend_ffi_tag *tag; in zend_ffi_cleanup_type() local
3163 zend_ffi_tag *tag; in zend_ffi_load() local
3370 free(tag); in zend_ffi_load()
3514 zend_ffi_tag *tag; in zend_ffi_validate_incomplete_type() local
3627 zend_ffi_tag *tag; in zend_ffi_tags_cleanup() local
3632 tag->type = type; in zend_ffi_tags_cleanup()
6223 zend_ffi_tag *tag; local
[all …]
/PHP-8.0/build/
H A Dgen_stub.php1101 foreach ($tags as $tag) {
1102 if ($tag->name === 'prefer-ref') {
1103 $varName = $tag->getVariableName();
1108 } else if ($tag->name === 'alias' || $tag->name === 'implementation-alias') {
1109 $aliasType = $tag->name;
1120 } else if ($tag->name === 'return') {
1121 $docReturnType = $tag->getType();
1122 } else if ($tag->name === 'param') {
1123 $docParamTypes[$tag->getVariableName()] = $tag->getType();
1352 foreach ($fileTags as $tag) {
[all …]
H A Dlibtool.m41952 *) AC_MSG_ERROR([invalid tag name: $tagname])
1958 AC_MSG_ERROR([tag name \"$tagname\" already exists])
1963 echo appending configuration tag \"$tagname\" to $ofile
1977 AC_MSG_ERROR([Unsupported tag name: $tagname])
1981 # Append the new tag name to the list of available tags.
3728 # DT_RUNPATH tag from executables and libraries. But doing so
3822 dnl tag define a new lt_????_link_test_code variable,
/PHP-8.0/ext/xml/
H A Dxml.c617 str = xml_utf8_decode((const XML_Char *)tag, strlen(tag), parser->target_encoding); in _xml_decode_tag()
665 zval tag, atr; in _xml_startElementHandler() local
668 array_init(&tag); in _xml_startElementHandler()
674 add_assoc_string(&tag, "type", "open"); in _xml_startElementHandler()
675 add_assoc_long(&tag, "level", parser->level); in _xml_startElementHandler()
733 zval tag; in _xml_endElementHandler() local
738 array_init(&tag); in _xml_endElementHandler()
743 add_assoc_string(&tag, "type", "close"); in _xml_endElementHandler()
820 zval tag; in _xml_characterDataHandler() local
840 array_init(&tag); in _xml_characterDataHandler()
[all …]
/PHP-8.0/ext/oci8/tests/
H A Dbug37220.phpt22 // Now let's update the row where myId = 1234 and change the tag
/PHP-8.0/ext/simplexml/tests/
H A Dbug81325.phpt16 Warning: DOMDocument::loadXML(): Start tag expected%s
/PHP-8.0/ext/standard/
H A Dstring.c88 int php_tag_find(char *tag, size_t len, const char *set);
4549 zend_string *tag; local
4552 tag = zval_get_string(tmp);
4554 smart_str_append(&tags_ss, tag);
4556 zend_string_release(tag);
4725 int php_tag_find(char *tag, size_t len, const char *set) { argument
4738 t = tag;
/PHP-8.0/ext/dom/tests/
H A DDOMDocument_loadXML_error1.phpt4 This test verifies the method detects an opening and ending tag mismatch
22 Warning: DOMDocument::load%r(XML){0,1}%r(): Opening and ending tag mismatch: title line 5 and book …
24 Warning: DOMDocument::load%r(XML){0,1}%r(): %rexpected '>'|Opening and ending tag mismatch: book li…
26 Warning: DOMDocument::load%r(XML){0,1}%r(): %rPremature end of data in tag books|EndTag: '<\/' not …
H A DDOMDocument_load_error1.phpt4 This test verifies the method detects an opening and ending tag mismatch
22 Warning: DOMDocument::load%r(XML){0,1}%r(): Opening and ending tag mismatch: title line 5 and book …
24 Warning: DOMDocument::load%r(XML){0,1}%r(): %rexpected '>'|Opening and ending tag mismatch: book li…
26 Warning: DOMDocument::load%r(XML){0,1}%r(): %rPremature end of data in tag books|EndTag: '<\/' not …
/PHP-8.0/ext/sodium/
H A Dlibsodium.stub.php120 …_push(string &$state, string $message, string $additional_data = "", int $tag = SODIUM_CRYPTO_SE… argument
H A Dlibsodium_arginfo.h276 …ZEND_ARG_TYPE_INFO_WITH_DEFAULT_VALUE(0, tag, IS_LONG, 0, "SODIUM_CRYPTO_SECRETSTREAM_XCHACHA20POL…
/PHP-8.0/ext/enchant/
H A Denchant.c450 char *tag; in PHP_FUNCTION() local
453 …if (zend_parse_parameters(ZEND_NUM_ARGS(), "Os", &broker, enchant_broker_ce, &tag, &taglen) == FAI… in PHP_FUNCTION()
464 pdict = enchant_broker_request_dict(pbroker->pbroker, (const char *)tag); in PHP_FUNCTION()
543 char *tag; in PHP_FUNCTION() local
547 …if (zend_parse_parameters(ZEND_NUM_ARGS(), "Os", &broker, enchant_broker_ce, &tag, &taglen) == FA… in PHP_FUNCTION()
553 RETURN_BOOL(enchant_broker_dict_exists(pbroker->pbroker, tag)); in PHP_FUNCTION()
/PHP-8.0/ext/phar/
H A Dzip.c55 if (h.header.tag[0] != 'n' || h.header.tag[1] != 'u') { in phar_zip_process_extra()
849 perms.tag[0] = 'n'; in phar_zip_changed_apply_int()
850 perms.tag[1] = 'u'; in phar_zip_changed_apply_int()
/PHP-8.0/ext/tidy/
H A Dtidy.c103 #define TIDY_TAG_CONST(tag) REGISTER_LONG_CONSTANT("TIDY_TAG_" #tag, TidyTag_##tag, CONST_CS | CONS… argument
/PHP-8.0/tests/lang/
H A Dshort_tags.001.phpt7 echo "Used a short tag\n";
11 Used a short tag
H A Dshort_tags.002.phpt7 echo "Used a short tag\n";
12 echo "Used a short tag\n";

Completed in 171 milliseconds

12345