Home
last modified time | relevance | path

Searched refs:a (Results 1 – 25 of 6495) sorted by path

12345678910>>...260

/PHP-7.4/
H A D.gdbinit54 If a zend_execute_data pointer is set this will print the compiled
416 dumps a function table (HashTable)
521 Takes a pointer to an object's property and prints the property information
618 print the length and contents of a zend string
629 This command is almost a short cut for
655 lookup a refcounted in root
H A D.gitignore3 # such as editor configuration, a good practice is to exclude them using the
4 # .git/info/exclude in the cloned repository or a global .gitignore file.
16 # Swap files created by editors and tools to indicate a locked file
27 *.a
H A DCODING_STANDARDS.md4 PHP should follow. Since this file was added at a very late stage of the
23 * The function is given a boolean argument, that controls whether or not the
38 done through a `#define`.
42 calculated with `strlen()`. Write your functions in such a way so that
56 8. When commenting out code using a `#if` statement, do NOT use `0` only.
64 use `function_exists()` to test for the existence of a function.
111 2. If they are part of a "parent set" of functions, that parent should be
139 except for places where the variable has no real meaning or a trivial
148 starts a new `word` is capitalized:
296 fold, and should be on a separate line.
[all …]
H A DCONTRIBUTING.md3 Anybody who programs in PHP can be a contributing member of the community that
5 websites is a never ending one. With every release, or release candidate comes a
6 wave of work, which takes a lot of organization and co-ordination.
62 the first time you've filed a bug, we suggest reading the
63 [guide to reporting a bug](https://bugs.php.net/how-to-report.php).
65 Where possible, please include a self-contained reproduction case!
89 a huge win for every PHP user.
122 Although not a formal channel, you can also find a number of core developers on
237 extension then create a bug or identify an existing bug at
243 If your change is large then create a
[all …]
H A DEXTENSIONS7 Odd Fixes: It has a maintainer but they don't have time to do
12 it has been replaced by a better system and you
H A DLICENSE29 license from time to time. Each version will be given a
31 Once covered code has been published under a particular version
H A DNEWS22 that have a specific semantic meaning. (CVE-2022-31629). (Derick)
41 . Updated to latest IANA timezone database (2022a). (Derick)
212 . Fixed bug #81294 (Segfault when removing a filter). (cmb)
470 that use a cursor). (Nikita)
472 with a cursor). (Nikita)
525 . Fixed bug #76815 (PDOStatement cannot be GCed/closeCursor-ed when a
1037 . Fixed bug #79283 (Segfault in libmagic patch contains a buffer
1636 while item is a reference). (Nikita)
2601 . Added gmp_lcm(a, b). (Nikita)
2602 . Added gmp_perfect_power(a). (Nikita)
[all …]
H A DREADME.REDIST.BINS26 PCRE2 is a library of functions to support regular expressions whose syntax
36 included in the distribution is a just-in-time compiler that can be used to
174 as part of a software package, or anywhere else to improve security,
178 you place this code and any modifications you make under a license
188 There's a paper on the algorithm that explains its design decisions:
203 Mersenne Twister random number generator -- a C++ class MTRand
533 any context without fee, including a commercial application,
546 limited to implied warranties of merchantability and fitness for a
637 3. Redistributions must contain a verbatim copy of this document.
640 Each revision is distinguished by a version number. You may use
[all …]
H A DREADME.md2 <a href="https://php.net">
7 </a>
12 PHP is a popular general-purpose scripting language that is especially suited to
57 Shall run `make` with a maximum of 4 concurrent jobs: Generally the maximum
70 Shall run `make test` with a maximum of 4 concurrent jobs: Generally the maximum
78 After a successful build (and test), PHP may be installed with:
95 the [GitHub mirror repository](https://github.com/php/php-src) and sending a
106 Bug fixes **do not** require an RFC but require a bug tracker ticket. Open a
112 After removing magic quotes, the get_magic_quotes_gpc function caused a
114 magic_quotes behavior and therefore should not raise a warning at any time.
H A DUPGRADING31 . "fn" is now a reserved keyword. In particular, it can no longer be used as a
44 avoid a warning (always returning false is a sufficient implementation).
172 . htmlentities() will now throw a notice (instead of a strict standards
341 strip_tags($str, '<a><p>') you can now write strip_tags($str, ['a', 'p']).
397 $a ? $b : $c ? $d : $e
399 ($a ? $b : $c) ? $d : $e
401 $a ? $b : ($c ? $d : $e)
408 . Unbinding $this of a non-static method through a combination of
413 . Using "parent" inside a class without a parent is deprecated, and will throw
417 a deprecation notice at startup.
[all …]
H A DUPGRADING.INTERNALS4 a. php_sys_symlink() and php_sys_link()
31 a. Abstract
36 a. ext/xml
43 a. php_sys_symlink() and php_sys_link() portability macros have been
83 The handler returns a non-null HashTable with increased refcounted, and
88 it possible to return a temporary property table.
177 longer be directly assigned to, and instead a set of specialized macros of
179 instructions as well as a compatibility shim in the wiki:
236 a. Abstract
321 a. ext/xml
/PHP-7.4/TSRM/
H A Dthreads.m492 dnl Try to find a way to enable POSIX threads.
/PHP-7.4/Zend/
H A DLICENSE24 of the license from time to time. Each version will be given a
26 Once covered code has been published under a particular version
H A DREADME.md35 threading and direct threading). As a result ZE2 got more than 20% speedup on
52 `<OPCODE-NUMBER>` is a opcode number (0, 1, ...)
58 `<HANDLER'S CODE>` is a handler's code itself. For most handlers it stills the
124 `zend_vm_opcodes.h` and `zend_vm_execute.h`. The first file is a list of opcode
H A DZend.m422 result = a / b;
395 #define zend_isnan(a) isnan(a)
397 #define zend_isnan(a) ((fpclass(a) == FP_SNAN) || (fpclass(a) == FP_QNAN))
424 #define zend_isinf(a) isinf(a)
427 #define zend_isinf(a) (((a)==INFINITY)?1:0)
429 #define zend_isinf(a) ((fpclass(a) == FP_PINF) || (fpclass(a) == FP_NINF))
456 #define zend_isinf(a) isinf(a)
459 #define zend_isinf(a) (((a)==INFINITY)?1:0)
461 #define zend_isinf(a) ((fpclass(a) == FP_PINF) || (fpclass(a) == FP_NINF))
489 #define zend_isnan(a) isnan(a)
[all …]
H A Dbench.php7 $a = 0;
9 $a++;
25 function hallo($a) { argument
40 function hallo2($a) { argument
306 for ($a=0; $a<$n; $a++)
H A Dmicro_bench.php25 static $a = 0; variable in Foo
31 $x = self::$a;
37 self::$a = 0;
43 $x = isset(self::$a);
49 $x = empty(self::$a);
135 $x = Foo::$a;
141 Foo::$a = 0;
147 $x = isset(Foo::$a);
153 $x = empty(Foo::$a);
/PHP-7.4/Zend/tests/
H A D001.phpt10 function test2($a) {
14 function test3($a, $b) {
37 static function test1($a) {
H A D002.phpt12 function test2($a) {
17 function test3($a, $b) {
42 static function test1($a) {
H A D003.phpt10 function test2($a) {
14 function test3($a, $b) {
37 static function test1($a) {
H A D007.phpt13 $var = array("a"=>1,"b"=>2,"c"=>3);
16 $a = array(1);
17 $a [] =&$a[0];
19 var_dump(each($a));
51 string(1) "a"
53 string(1) "a"
H A D009.phpt47 Warning: get_class() called without object from outside a class in %s on line %d
H A D019.phpt100 $var = 1; // a var which is defined
236 //unset a member and check
300 // assign a value to static var
310 echo "\n** Testing unset() variation 2: unset on a variable passed by ref. inside of a function **\…
312 * If a variable that is PASSED BY REFERENCE is unset() inside of a function,
323 // set the value ot a new one
333 echo "\n** Testing unset() variation 3: unset on a global variable inside of a function **\n";
334 /* unset() variation2: unset on a global variable inside a function
335 * If a globalized variable is unset() inside of a function, only the
1320 ** Testing unset() variation 2: unset on a variable passed by ref. inside of a function **
[all …]
H A D021.phpt10 $a = 23;
15 var_dump($a ?: $b);
H A D022.phpt19 $a = new Ext();
20 $a->someMethod("foo");
21 $a->someMethod();

Completed in 51 milliseconds

12345678910>>...260