Home
last modified time | relevance | path

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

12345678910>>...40

/PHP-5.3/
H A D.gdbinit40 printf "[0x%08x] ", $t
170 printf "[0x%08x] ", $zvalue
211 printf "[0x%08x] {\n", $arg0
251 printf "[0x%08x] {\n", $arg0
262 printf "[0x%08x] {\n", $arg0
273 printf "[0x%08x] {\n", $arg0
309 printf "[0x%08x] {\n", $arg0
386 printf "[0x%08x] {\n", $pi
442 printf "[0x%08x] %s", $znode, $optype
522 printf " 0x%08x ", $aptr
[all …]
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.gcov16 for x in $$files; do \
18 y=`echo $$x | sed -e 's!\.libs/!!'`; \
19 dir=lcov_data/`dirname $$x`; \
42 test -f "$$x.gcno" && cp $$x.gcno lcov_data/$$y.gcno ; \
43 test -f "$$x.gcda" && cp $$x.gcda lcov_data/$$y.gcda ; \
44 test -f "$$x.da" && cp $$x.da lcov_data/$$y.da ; \
45 test -f "$$x.bb" && cp $$x.bb lcov_data/$$y.bb ; \
46 test -f "$$x.bbg" && cp $$x.bbg lcov_data/$$y.bbg ; \
H A DNEWS1568 type is application/x-www-form-urlencoded or is not registered with PHP).
3041 - Fixed readlink on Windows in thread safe SAPI (apache2.x etc.). (Pierre)
4448 - Fixed gd build when used with freetype 1.x (Pierre, Tony)
4848 - Fixed bug #39890 (using autoconf 2.6x and --with-layout=GNU breaks PEAR
5113 re-added it for other SAPIs (restore to pre 5.1.x behavior). (Edin)
5169 support for both Apache 2.0.x (php5apache2_filter.dll) and Apache 2.2.x
5849 - Fixed crash and leak in mysqli when using 4.1.x client libraries and
5850 connecting to 5.x server. (Andrey)
5984 - Fixed bug #35170 (PHP_AUTH_DIGEST differs under Apache 1.x and 2.x). (Ilia)
6072 - Added Cursor support for MySQL 5.0.x in mysqli (Georg)
[all …]
H A DREADME.EXT_SKEL131 bool my_drawtext(resource image, string text, resource font, int x, int y [, int color])
137 /* {{{ proto bool my_drawtext(resource image, string text, resource font, int x, int y [, int color…
146 long x;
152 …if (zend_parse_parameters(argc TSRMLS_CC, "rsrll|l", &image, &text, &text_len, &font, &x, &y, &col…
H A DREADME.GIT-RULES48 PHP-5.5 Is used to release the PHP 5.5.x series. This is a current
51 PHP-5.4 Is used to release the PHP 5.4.x series. This is a current
H A DREADME.RELEASE_PROCESS123 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.3/TSRM/
H A Dtsrm_virtual_cwd.c65 #define realpath(x,y) strcpy(y,x) argument
/PHP-5.3/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.php53 $x=0; $y=0; $w2=0; $h2=0; $color=0;
59 for ($x=0 ; $x<=$h1; $x=$x+1) {
60 $rec=$s*($x-$w2)+$recen;
90 for ($x=0; $c = $x*0.04 - 2, $z=0, $Z=0, $x++ < 75;){
283 $x = 0;
285 $x += $m1[$i][$k] * $m2[$k][$j];
287 $m3[$i][$j] = $x;
306 $x = 0;
313 $x++;
314 print "$x\n";
/PHP-5.3/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 83 milliseconds

12345678910>>...40