Home
last modified time | relevance | path

Searched refs:This (Results 1 – 25 of 684) sorted by last modified time

12345678910>>...28

/PHP-7.4/
H A DNEWS2460 'php ext_skel.php' for all options. This means there are no dependencies,
H A Dconfigure.ac260 dnl supports it. This can help reduce the binary size and startup time.
382 dnl source packages. This should be harmless on other OSs.
1109 dnl This has to be here to prevent the openssl crypt() from overriding the
1549 | This software is subject to the PHP License, available in this |
H A D.gdbinit67 if $ex->This->value.obj
71 printf "%s->", $ex->This->value.obj->ce.name->val
87 set $count = $ex->This.u2.num_args
629 This command is almost a short cut for
H A DLICENSE41 "This product includes PHP software, freely available from
59 This software consists of voluntary contributions made by many
/PHP-7.4/ext/fileinfo/
H A Dlibmagic.patch796 + /* php_magic_database is a const, performing writes will segfault. This is for big-endian
3580 + ms->search.rm_len = Z_STRLEN_P(match) /* This is the length of the matched pattern */;
/PHP-7.4/ext/ffi/
H A Dffi.g7 | This source file is subject to version 3.01 of the PHP license, |
39 | This source file is subject to version 3.01 of the PHP license, |
/PHP-7.4/build/
H A Dpkg.m47 dnl This program is free software; you can redistribute it and/or modify
12 dnl This program is distributed in the hope that it will be useful, but
H A Dphp.m41 dnl This file contains local autoconf macros.
105 dnl Adds "file" to the list of files generated by AC_OUTPUT. This macro can be
999 dnl This macro is scanned by genif.sh when it builds the internal functions
1450 dnl This comes in two flavors: newer glibcs (since 2.1.2?) have a type called
1572 dnl This macro checks whether 'func' or '__func' exists in the specified
1574 dnl LIBS. This should be called in the ACTION-IF-NOT-FOUND part of
1643 dnl This macro checks whether build works and given function exists.
2091 dnl This macro is used to get a comparable version for Apache.
2108 dnl configure command run by user. This file is named 'config.nice' in PHP.
2286 #define TEXT "This is the test message -- "
[all …]
/PHP-7.4/Zend/
H A Dzend_vm_execute.h4092 Z_PTR(EX(This))); in ZEND_INCLUDE_OR_EVAL_SPEC_CONST_HANDLER()
13741 Z_PTR(EX(This))); in ZEND_INCLUDE_OR_EVAL_SPEC_TMPVAR_HANDLER()
30362 obj = &EX(This); in ZEND_CLONE_SPEC_UNUSED_HANDLER()
30475 object = &EX(This); in ZEND_ASSIGN_OBJ_OP_SPEC_UNUSED_CONST_HANDLER()
30564 object = &EX(This); in ZEND_PRE_INC_OBJ_SPEC_UNUSED_CONST_HANDLER()
30624 object = &EX(This); in ZEND_POST_INC_OBJ_SPEC_UNUSED_CONST_HANDLER()
30993 object = &EX(This); in ZEND_ASSIGN_OBJ_SPEC_UNUSED_CONST_OP_DATA_CONST_HANDLER()
31117 object = &EX(This); in ZEND_ASSIGN_OBJ_SPEC_UNUSED_CONST_OP_DATA_TMP_HANDLER()
31241 object = &EX(This); in ZEND_ASSIGN_OBJ_SPEC_UNUSED_CONST_OP_DATA_VAR_HANDLER()
31365 object = &EX(This); in ZEND_ASSIGN_OBJ_SPEC_UNUSED_CONST_OP_DATA_CV_HANDLER()
[all …]
H A Dzend_vm_def.h3723 if (Z_TYPE(EX(This)) == IS_OBJECT && instanceof_function(Z_OBJCE(EX(This)), ce)) {
3740 ce = Z_OBJCE(EX(This));
3742 ce = Z_CE(EX(This));
4229 OBJ_RELEASE(Z_OBJ(call->This));
5093 Z_OBJ(EX(call)->This) = NULL;
6019 Z_PTR(EX(This)));
7654 called_scope = Z_OBJCE(EX(This));
7659 object = &EX(This);
7662 called_scope = Z_CE(EX(This));
8255 called_scope = Z_CE(EX(This));
[all …]
H A Dzend_execute.c526 return &EX(This); in _get_obj_zval_ptr()
535 return &EX(This); in _get_obj_zval_ptr_undef()
544 return &EX(This); in _get_obj_zval_ptr_ptr()
3381 if (EXPECTED(Z_TYPE(EX(This)) == IS_OBJECT)) { in zend_fetch_this_var()
3382 ZVAL_OBJ(result, Z_OBJ(EX(This))); in zend_fetch_this_var()
3390 if (EXPECTED(Z_TYPE(EX(This)) == IS_OBJECT)) { in zend_fetch_this_var()
3391 ZVAL_OBJ(result, Z_OBJ(EX(This))); in zend_fetch_this_var()
3922 OBJ_RELEASE(Z_OBJ(call->This)); in cleanup_unfinished_calls()
4339 if (UNEXPECTED(Z_TYPE(call->This) != IS_OBJECT)) { in zend_do_fcall_overloaded()
4351 object = Z_OBJ(call->This); in zend_do_fcall_overloaded()
H A Dzend_execute_API.c1031 if (Z_TYPE(ex->This) == IS_OBJECT) { in zend_get_called_scope()
1032 return Z_OBJCE(ex->This); in zend_get_called_scope()
1033 } else if (Z_CE(ex->This)) { in zend_get_called_scope()
1034 return Z_CE(ex->This); in zend_get_called_scope()
1049 if (Z_TYPE(ex->This) == IS_OBJECT) { in zend_get_this_object()
1050 return Z_OBJ(ex->This); in zend_get_this_object()
/PHP-7.4/ext/dom/tests/
H A DDOMDocument_loadXML_error1.phpt4 This test verifies the method detects an opening and ending tag mismatch
H A DDOMDocument_load_error1.phpt4 This test verifies the method detects an opening and ending tag mismatch
H A DDOMDocument_saveHTMLFile_formatOutput.phpt21 $text = $doc->createTextNode('This is the title');
32 <title>This is the title</title>
H A DDOMDocument_saveHTMLFile_basic.phpt20 $text = $doc->createTextNode('This is the title');
29 <html><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8"><title>This is the t…
/PHP-7.4/ext/ftp/tests/
H A Dserver.inc418 fputs($fs, "This is line $i of the test data.\n");
/PHP-7.4/Zend/tests/
H A Dbug80972.phpt26 /* This same bug also permits to modify the first byte of a string even if
29 /* This must not affect the string value */
/PHP-7.4/ext/reflection/
H A Dphp_reflection.c2202 if (Z_TYPE(ex->This) == IS_OBJECT) { in ZEND_METHOD()
2203 Z_ADDREF(ex->This); in ZEND_METHOD()
2204 ZVAL_OBJ(return_value, Z_OBJ(ex->This)); in ZEND_METHOD()
/PHP-7.4/ext/oci8/
H A DLICENSE41 "This product includes PHP software, freely available from
59 This software consists of voluntary contributions made by many
/PHP-7.4/ext/standard/tests/url/
H A Dparse_url_unterminated.phpt11 * This is the same as the basic001 test, but with unterminated strings.
/PHP-7.4/ext/phar/tests/
H A Dbug79912.phpt13 $phar->addFromString("test.txt", "This is a test file.This is a test file.This is a test file.");
25 string(60) "This is a test file.This is a test file.This is a test file."
30 string(60) "This is a test file.This is a test file.This is a test file."
/PHP-7.4/ext/mysqli/tests/
H A Dmysqli_stmt_get_result.phpt15 NOTE: no datatype tests here! This is done by
H A Dmysqli_stmt_send_long_data_packet_size_mysqlnd.phpt67 This should be added to the EXPECTF, if you reactivate the test
H A Dmysqli_stmt_fetch_bit.phpt25 /* NOTE: works only for up to 31 bits! This limitation should be documented. */

Completed in 225 milliseconds

12345678910>>...28