Home
last modified time | relevance | path

Searched refs:X (Results 1 – 25 of 331) sorted by path

12345678910>>...14

/PHP-5.5/
H A DINSTALL17 * Installation on Mac OS X
20 + Compiling PHP on Mac OS X
62 have a web server (e.g. Apache on Linux and MacOS X; IIS on Windows).
1067 Installation on Mac OS X
1073 * Compiling PHP on Mac OS X
1134 Note: Versions of Mac OS X prior to 10.5 were bundled with older
1164 Before OS X 10.5 (Leopard), PHP 4 was bundled instead of PHP 5 in
1203 Compiling PHP on Mac OS X
1205 Use the Unix installation guide to compile PHP on Mac OS X.
1888 + > run -X -f /path/to/httpd.conf
[all …]
H A DNEWS669 . Fixed bug #68114 (linker error on some OS X machines with fixed
867 . Fixed bug #68114 (linker error on some OS X machines with fixed width
1277 . Fixed bug #66535 (Don't add newline after X-PHP-Originating-Script) (Tjerk)
3791 . Fixed bug #60019 (Function time_nanosleep() is undefined on OS X). (Ilia)
4779 . Fixed bug #52417 (MySQLi build failure with mysqlnd on MacOS X). (Andrey)
4780 . Fixed bug #52413 (MySQLi/libmysql build failure on OS X, FreeBSD). (Andrey)
5264 - Fixed bug #50907 (X-PHP-Originating-Script adding two new lines in *NIX).
6108 - Fixed bug #48620 (X-PHP-Originating-Script assumes no trailing CRLF in
8356 - Fixed bug #38467 (--enable-versioning causes make fail on OS X). (Tony)
10180 - Fixed bug #28999 (fixed behaviour of exec() to work as it did in 4.X). (Ilia)
H A DREADME.GIT-RULES65 PHP-X.Y.Z These branches are used for the release managers for tagging
H A DREADME.RELEASE_PROCESS179 ``gpg -u YOUREMAIL --armor --detach-sign php-X.Y.Z.tar.xxx``
208 2. Edit ``phpweb/include/version.inc`` and change (X=major release number):
221 ``$RELEASES[X][$PHP_X_VERSION]["source"]`` array
281 2. Edit ``phpweb/include/version.inc`` and change (X=major release number):
294 ``$RELEASES[X][$PHP_X_VERSION]["source"]`` array
H A DREADME.SELF-CONTAINED-EXTENSIONS43 $ cp -rp php-4.0.X/ext/mysql/* .
H A DUPGRADING.INTERNALS3 UPGRADE NOTES - PHP X.Y
/PHP-5.5/Zend/
H A DREADME.ZEND_VM55 OP<X>_TYPE
58 get_zval_ptr(&opline->op<X>, EX(Ts), &free_op<X>, <TYPE>)
60 get_zval_ptr_ptr(&opline->op<X>, EX(Ts), &free_op<X>, <TYPE>)
62 get_obj_zval_ptr(&opline->op<X>, EX(Ts), &free_op<X>, <TYPE>)
64 get_obj_zval_ptr_ptr(&opline->op<X>, EX(Ts), &free_op<X>, <TYPE>)
65 IS_OP<X>_TMP_FREE()
67 FREE_OP<X>()
68 FREE_OP(free_op<X>)
69 FREE_OP<X>_IF_VAR()
70 FREE_VAR(free_op<X>)
[all …]
H A DZend.m444 dnl Hack to work around a Mac OS X cpp problem
H A Dbench.php114 $X[$i] = $i;
117 $Y[$i] = $X[$i];
127 $X[$i] = $i; ++$i;
128 $X[$i] = $i; ++$i;
129 $X[$i] = $i; ++$i;
130 $X[$i] = $i; ++$i;
131 $X[$i] = $i; ++$i;
133 $X[$i] = $i; ++$i;
134 $X[$i] = $i; ++$i;
135 $X[$i] = $i; ++$i;
[all …]
H A Dzend.h155 # define ZEND_ATTRIBUTE_ALLOC_SIZE(X) __attribute__ ((alloc_size(X))) argument
156 # define ZEND_ATTRIBUTE_ALLOC_SIZE2(X,Y) __attribute__ ((alloc_size(X,Y))) argument
158 # define ZEND_ATTRIBUTE_ALLOC_SIZE(X) argument
159 # define ZEND_ATTRIBUTE_ALLOC_SIZE2(X,Y) argument
/PHP-5.5/Zend/tests/
H A Dbug33257.phpt7 class X {
14 //$arr1 = X::getArr();
15 array_splice(X::getArr(), 1, 1);
16 print_r(X::getArr());
H A Dbug41961.phpt5 X::test();
7 /** Class X is related to neither ParentClass nor ChildClass. */
8 class X {
11 $myChild->secret(); // bug - invokes X::secret() instead of ChildClass::secret()
H A Dbug44141.phpt5 class X
14 class Y extends X
25 Fatal error: Call to private X::__construct() from context 'Y' in %sbug44141.php on line 15
H A Dbug47699.phpt14 new X();
18 Fatal error: Class 'X' not found in %sbug47699.php on line %d
H A Dbug60536_001.phpt6 class X {
9 class Y extends X {
H A Dindirect_method_call_001.phpt13 $X = (new foo)->Inexistent(3);
H A Dindirect_method_call_003.phpt18 $X = (new foo)->setX(10)->getX();
19 var_dump($X); // int(10)
H A Dindirect_reference_this.phpt5 class X {
8 $x = new X;
12 object(X)#%d (0) {
H A Djump04.phpt5 $s = "X";
7 L1: if ($s != "X") {
13 $s .= "X";
H A Dns_010.phpt5 namespace X;
6 use X as Y;
19 new \X\Foo();
22 \X\Foo::bar();
25 echo \X\Foo::C;
28 echo \X\Foo::$var;
H A Dns_020.phpt5 namespace X;
6 use X as Y;
11 \X\foo();
13 \X\foo();
15 X\foo
16 X\foo
17 X\foo
18 X\foo
H A Dns_037.phpt5 namespace X;
6 use X as Y;
7 class X {
17 new X();
18 new Y\X();
19 new \X\X();
20 X::bar();
22 \X\X::bar();
23 echo X::C;
25 echo \X\X::C;
[all …]
H A Dns_040.phpt5 namespace X;
6 use X as Y;
12 function f2($x=\X\A) {
18 function f4($x=\X\A) {
34 echo \X\A;
36 echo \X\A;
H A Dns_065.inc2 namespace X\Y;
6 namespace X\Z;
H A Dns_065.phpt5 use X\Y as test, X\Z as test2;
12 X\Y\foo
13 X\Z\foo

Completed in 59 milliseconds

12345678910>>...14