Home
last modified time | relevance | path

Searched refs:data (Results 1 – 25 of 1800) sorted by path

12345678910>>...72

/PHP-7.4/
H A D.gitignore241 # Temporary POST data placeholder files generated by `./run-tests.php`
H A DNEWS269 . Fixed bug #76452: Crash while parsing blob data in firebird_fetch_blob.
492 . Fixed bug #77069 (stream filter loses final block of data). (cmb)
576 . Fixed bug #44618 (Fetching may rely on uninitialized data). (cmb)
638 . Fixed bug #80083 (Optimizer pass 6 removes variables used for ibm_db2 data
814 . Fixed bug #70362 (Can't copy() large 'data://' with open_basedir). (cmb)
862 . Fixed bug #74267 (segfault with streams and invalid data). (cmb)
1513 . Fixed bug #76058 (After "POST data can't be buffered", using php://input
1693 . Fixed bug #76859 (stream_get_line skips data if used with data-generating
1812 . Fixed bug #76859 (stream_get_line skips data if used with data-generating
2723 TIMEZONE' data type). (Andy Gajetzki)
[all …]
H A DREADME.REDIST.BINS32 is distributed under the same terms as the software itself. The data in the
H A DUPGRADING182 interpret "false" as a failure return values. If no data is available, but
278 native variables and create/access data structures defined in C libraries.
349 // Restores the object state from the given data array.
350 public function __unserialize(array $data): void;
H A DUPGRADING.INTERNALS142 Few related data structures were changed to allow addressing mutable data
/PHP-7.4/TSRM/
H A Dthreads.m472 void *thread_routine(void *data) {
73 return data;
79 int data = 1;
81 return pthread_create(&thd, NULL, thread_routine, &data);
/PHP-7.4/Zend/
H A DREADME.md60 operands and some internal executor data.
/PHP-7.4/Zend/tests/
H A DArrayAccess_indirect_append.phpt7 private $data = [];
10 return $this->data[];
12 return $this->data[$name];
16 $this->data[$name] = $value;
30 ["data":"AA":private]=>
H A Dassign_coalesce_003.phpt12 public $data;
13 public function __construct($data = []) {
14 $this->data = $data;
18 return $this->data[$k];
22 return array_key_exists($k, $this->data);
26 $this->data[$k] = $v;
H A Dbug21478.phpt8 $bucket->data = strtoupper($bucket->data);
10 $consumed += strlen($bucket->data);
H A Dbug26010.phpt10 $data = new foo();
11 $obj_vars = get_object_vars($data);
H A Dbug30346.phpt11 public function offsetSet( $offset, $data ) { }
H A Dbug32428.phpt5 $data = @$not_exists;
6 $data = @($not_exists);
7 $data = @!$not_exists;
8 $data = !@$not_exists;
9 $data = @($not_exists+1);
H A Dbug34065.phpt5 $data = file(__FILE__);
7 foreach ($data as $line) {
H A Dbug38779.phpt8 private $data;
10 $this->data = '<' . "?php \n\"\";ll l\n ?" . '>';
15 $ret = substr($this->data, $this->position, $count);
20 return $this->position >= strlen($this->data);
23 return array('size' => strlen($this->data));
H A Dbug38779_1.phpt8 private $data;
10 $this->data = '<' . "?php \n\"\";ll l\n ?" . '>';
15 $ret = substr($this->data, $this->position, $count);
20 return $this->position >= strlen($this->data);
H A Dbug39721.phpt2 Bug #39721 (Runtime inheritance causes data corruption)
H A Dbug40261.phpt2 Bug #40261 (Extremely slow data handling due to memory fragmentation)
H A Dbug40833.phpt7 private $data;
12 if ( isset($this->data[$name]) )
13 return $this->data[$name];
15 return $this->data[$name] = new set($this);
H A Dbug44899.phpt10 function __construct($data)
12 $this->_data = $data;
H A Dbug44899_2.phpt10 function __construct($data)
12 $this->_data = $data;
H A Dbug45744.phpt6 public function __construct(array $data) {
7 var_dump(array_map(array($this, 'callback'), $data));
24 public function __construct(array $data) {
25 var_dump(array_map(array($this, 'callBack'), $data));
/PHP-7.4/Zend/tests/anon/
H A D004.phpt6 protected $data;
8 public function __construct($data) {
9 $this->data = $data;
14 return new class($this->data) extends Outer implements ArrayAccess {
15 public function offsetGet($offset) { return $this->data[$offset]; }
16 public function offsetSet($offset, $data) { return ($this->data[$offset] = $data); }
17 public function offsetUnset($offset) { unset($this->data[$offset]); }
18 public function offsetExists($offset) { return isset($this->data[$offset]); }
H A D005.phpt6 protected $data;
8 public function __construct(&$data) {
10 $this->data = &$data;
16 return new class($this->data) implements ArrayAccess {
17 public function offsetGet($offset) { return $this->data[$offset]; }
18 public function offsetSet($offset, $data) { return ($this->data[$offset] = $data); }
19 public function offsetUnset($offset) { unset($this->data[$offset]); }
20 public function offsetExists($offset) { return isset($this->data[$offset]); }
25 $data = array(
30 $outer = new Outer($data);
/PHP-7.4/Zend/tests/assert/
H A Dexpect_007.phpt9 $data = array(
16 …(preg_match("~^([a-zA-Z0-9-]+)$~", $data["key"]), new HeaderMalfunctionError("malformed key found …

Completed in 35 milliseconds

12345678910>>...72