Home
last modified time | relevance | path

Searched refs:x (Results 1 – 25 of 1169) sorted by path

12345678910>>...47

/PHP-5.5/
H A DEXTENSIONS229 COMMENT: Use PostgreSQL 7.0.x or later. PostgreSQL 6.5.3 or less have fatal bug.
H A DINSTALL254 2. cd apache_1.3.x
259 6. cd php-5.x.y
264 10. cd ../apache_1.3.x
275 13. cd ../php-5.x.y
368 Apache 2.x on Unix systems
655 3. gunzip php-x.x.x.tar.gz (if you have a .gz dist, otherwise go to
657 4. tar xvf php-x.x.x.tar
658 5. Change to your extracted PHP directory: cd ../php-x.x.x
1494 $ mv extname-x.x.x extname
1601 [HKEY_LOCAL_MACHINE\SOFTWARE\PHP\x], where x, y and z mean the PHP
[all …]
H A DMakefile.gcov18 for x in $$files; do \
21 dir=lcov_data/`dirname $$x`; \
44 if test -f "$$x.gcno"; then \
45 cp $$x.gcno lcov_data/$$y.gcno ; \
47 if test -f "$$x.gcda"; then \
50 if test -f "$$x.da"; then \
51 cp $$x.da lcov_data/$$y.da ; \
53 if test -f "$$x.bb"; then \
54 cp $$x.bb lcov_data/$$y.bb ; \
56 if test -f "$$x.bbg"; then \
[all …]
H A DNEWS2186 . Fixed bug #64106 (Segfault on SplFixedArray[][x] = y when extended).
2374 . Fixed bug #64106 (Segfault on SplFixedArray[][x] = y when extended).
7498 - Fixed gd build when used with freetype 1.x (Pierre, Tony)
7898 - Fixed bug #39890 (using autoconf 2.6x and --with-layout=GNU breaks PEAR
8163 re-added it for other SAPIs (restore to pre 5.1.x behavior). (Edin)
8219 support for both Apache 2.0.x (php5apache2_filter.dll) and Apache 2.2.x
8899 - Fixed crash and leak in mysqli when using 4.1.x client libraries and
8900 connecting to 5.x server. (Andrey)
9034 - Fixed bug #35170 (PHP_AUTH_DIGEST differs under Apache 1.x and 2.x). (Ilia)
9122 - Added Cursor support for MySQL 5.0.x in mysqli (Georg)
[all …]
H A DREADME.EXT_SKEL154 bool module_name_drawtext(resource image, string text, resource font, int x, int y [, int color])
160 /* {{{ proto bool module_name_drawtext(resource image, string text, resource font, int x, int y [, …
169 long x;
175 …if (zend_parse_parameters(argc TSRMLS_CC, "rsrll|l", &image, &text, &text_len, &font, &x, &y, &col…
H A DREADME.GIT-RULES48 PHP-5.6 Is used to release the PHP 5.6.x series. This is a current
51 PHP-5.5 Is used to release the PHP 5.5.x series. This is an old
54 PHP-5.4 Is used to release the PHP 5.4.x series. This is an old
H A DREADME.RELEASE_PROCESS135 4. Update ``web/php.git/include/version.inc`` (x=major version number)
H A DREADME.namespaces34 $x = new Zend\DB\Connection;
45 $x = new Zend\DB\Connection();
/PHP-5.5/TSRM/
H A Dtsrm_virtual_cwd.c65 #define realpath(x,y) strcpy(y,x) argument
/PHP-5.5/Zend/
H A DZEND_CHANGES747 public $x = array('a' => 1, 'b' => 2, 'c' => 3);
752 if(isset($this->x[$nm])) {
753 $r = $this->x[$nm];
764 if(isset($this->x[$nm])) {
765 $this->x[$nm] = $val;
785 var $x = array(1, 2, 3);
790 return $this->x;
809 var $x = 1;
928 $x = $obj[0]; // calls offsetGet(0)
H A Dacinclude.m443 fp_except x = (fp_except) 0;
H A Dbench.php52 $x=0; $y=0; $w2=0; $h2=0; $color=0;
58 for ($x=0 ; $x<=$h1; $x=$x+1) {
59 $rec=$s*($x-$w2)+$recen;
89 for ($x=0; $c = $x*0.04 - 2, $z=0, $Z=0, $x++ < 75;){
282 $x = 0;
284 $x += $m1[$i][$k] * $m2[$k][$j];
286 $m3[$i][$j] = $x;
305 $x = 0;
312 $x++;
313 print "$x\n";
H A Dmicro_bench.php31 $x = self::$a;
64 $x = $this->b;
127 $x = $this::TEST;
135 $x = Foo::$a;
165 $x = new Foo();
173 $x = TEST;
179 $x = $_GET;
201 $x = $str[1];
315 $x = new Foo(); variable
316 $x->read_prop(N);
[all …]
/PHP-5.5/Zend/tests/
H A D019.phpt200 var $x;
204 function Point($x, $y) {
205 $this->x = $x;
237 unset($point1->x);
240 var_dump( isset($point1->x) ); // expected: bool(false)
241 var_dump( empty($point1->x) ); // expected: bool(true)
1222 ["x"]=>
1244 ["x"]=>
1281 ["x"]=>
H A D037.phpt8 class closure { static $x = 1;}
10 $x = __NAMESPACE__;
11 var_dump(closure::$x);
13 var_dump($x::$x);
19 Fatal error: Access to undeclared static property: Closure::$x in %s on line %d
H A Dbug19859.phpt14 $x = new test;
15 $x->fake(1);
16 call_user_func_array(array($x,'fake'),array(1));
17 call_user_func(array($x,'fake'),2);
H A Dbug22836.phpt9 $x = "foo";
10 var_dump($x);
11 print "'$x'\n";
H A Dbug26281.phpt5 $x = 'abc';
6 switch ($x[0]) {
H A Dbug27268.phpt15 $x = $A->getA();
H A Dbug28444.phpt14 public $x;
18 $this->x = $x;
25 public $x;
29 $this->x = new Object($x);
45 var_dump($y->x);
46 var_dump($y->x->x);
47 var_dump($y->x->x = 3);
51 var_dump($y->z->x);
53 var_dump($t->x = 5);
60 ["x"]=>
[all …]
H A Dbug29015.phpt6 $x = "";
7 $a->$x = "string('')";
H A Dbug29883.phpt5 $x = "bug";
6 var_dump(isset($x[-1]));
7 var_dump(isset($x["1"]));
8 echo $x["1"]."\n";
H A Dbug30140.phpt14 A::$test1 = "x";
25 string(1) "x"
28 string(1) "x"
H A Dbug30162.phpt8 $this->x = "x";
49 ["x"]=>
50 string(1) "x"
H A Dbug30702.phpt22 $x= new bar();
23 var_dump($x);

Completed in 66 milliseconds

12345678910>>...47