Home
last modified time | relevance | path

Searched refs:index (Results 1 – 25 of 630) sorted by last modified time

12345678910>>...26

/PHP-5.5/win32/
H A Dreaddir.c27 int index; in opendir() local
40 index = strlen(filespec) - 1; in opendir()
41 if (index >= 0 && (filespec[index] == '/' || in opendir()
42 (filespec[index] == '\\' && (index == 0 || !IsDBCSLeadByte(filespec[index-1]))))) in opendir()
43 filespec[index] = '\0'; in opendir()
142 int index; in rewinddir() local
155 index = strlen(filespec) - 1; in rewinddir()
156 if (index >= 0 && (filespec[index] == '/' || in rewinddir()
157 (filespec[index] == '\\' && (index == 0 || !IsDBCSLeadByte(filespec[index-1]))))) in rewinddir()
158 filespec[index] = '\0'; in rewinddir()
H A Dregistry.c102 char *index; in LoadDirectory() local
109 … zend_hash_get_current_key_ex(parent_ht, &index, &index_len, &num, 0, &pos) == HASH_KEY_IS_STRING; in LoadDirectory()
111 if (zend_hash_add(ht, index, index_len, tmpdata, sizeof(zval*), NULL) == SUCCESS) { in LoadDirectory()
255 char *index; in UpdateIniFromRegistry() local
262 zend_hash_get_current_key_ex(ht, &index, &index_len, &num, 0, &pos) == HASH_KEY_IS_STRING; in UpdateIniFromRegistry()
264 …zend_alter_ini_entry(index, index_len, Z_STRVAL_PP(data), Z_STRLEN_PP(data), PHP_INI_USER, PHP_INI… in UpdateIniFromRegistry()
H A Dsendmail.c352 PHPAPI char *GetSMErrorText(int index) in GetSMErrorText() argument
354 if (MIN_ERROR_INDEX <= index && index < MAX_ERROR_INDEX) { in GetSMErrorText()
355 return (ErrorMessages[index]); in GetSMErrorText()
857 int index = 0; in Post() local
860 if ((slen = send(sc, msg + index, len, 0)) < 1) in Post()
863 index += slen; in Post()
H A Dsendmail.h43 PHPAPI char *GetSMErrorText(int index);
H A Dinstall.txt468 In order to use index.php as a default content page, do the following:
469 From within the Documents tab, choose Add. Type in index.php and click
/PHP-5.5/tests/lang/
H A Dbug25547.phpt2 Bug #25547 (error_handler and array index with function call)
25 handler(Undefined index: foo)
H A Dbug25922.phpt17 echo "Undefined index here: '{$data['HTTP_HEADER']}'\n";
23 Undefined index here: ''
H A Dbug26696.phpt2 Bug #26696 (string index in a switch() crashes with multiple matches)
H A Dbug29893.phpt2 Bug #29893 (segfault when using array as index)
/PHP-5.5/tests/classes/
H A Darray_access_008.phpt13 function offsetExists($index) {
14 return array_key_exists($this->person, $index);
17 function offsetGet($index) {
18 return $this->person[$index];
21 function offsetSet($index, $value) {
22 $this->person[$index] = $value;
25 function offsetUnset($index) {
26 unset($this->person[$index]);
H A Darray_access_009.phpt12 function proxyUnset($element, $index);
31 function offsetExists($index) {
36 function offsetGet($index) {
39 return isset($tmp[$index]) ? $tmp[$index] : NULL;
47 function offsetUnset($index) {
62 function offsetExists($index)
67 function offsetGet($index)
72 function offsetSet($index, $value)
74 $this->person[$index] = $value;
77 function offsetUnset($index)
[all …]
H A Darray_access_010.phpt20 function offsetExists($index) {
25 function offsetGet($index) {
27 return isset($this->element[$index]) ? $this->element[$index] : NULL;
32 $this->element[$index] = $value;
35 function offsetUnset($index) {
37 unset($this->element[$index]);
50 function offsetExists($index)
55 function offsetGet($index)
62 $this->person[$index] = $value;
65 function offsetUnset($index)
[all …]
H A Darray_access_011.phpt22 function offsetExists($index) {
27 function offsetGet($index) {
29 …return isset($this->oarray[$this->element][$index]) ? $this->oarray[$this->element][$index] : NULL;
37 function offsetUnset($index) {
52 function offsetExists($index)
57 function offsetGet($index)
65 return $this->person[$index];
69 function offsetSet($index, $value)
71 $this->person[$index] = $value;
74 function offsetUnset($index)
[all …]
H A Darray_access_012.phpt9 public function offsetUnset($index) {}
11 public function offsetSet($index, $value) {
12 $this->data[$index] = $value;
15 public function offsetGet($index) {
16 return $this->data[$index];
19 public function offsetExists($index) {
20 return isset($this->data[$index]);
H A Darray_access_001.phpt9 function offsetExists($index) {
10 echo __METHOD__ . "($index)\n";
13 function offsetGet($index) {
14 echo __METHOD__ . "($index)\n";
15 return $this->a[$index];
17 function offsetSet($index, $newval) {
18 echo __METHOD__ . "($index,$newval)\n";
19 return $this->a[$index] = $newval;
21 function offsetUnset($index) {
22 echo __METHOD__ . "($index)\n";
[all …]
H A Darray_access_002.phpt9 function offsetExists($index) {
10 echo __METHOD__ . "($index)\n";
13 function offsetGet($index) {
14 echo __METHOD__ . "($index)\n";
15 return $this->a[$index];
17 function offsetSet($index, $newval) {
18 echo __METHOD__ . "($index,$newval)\n";
19 /*return*/ $this->a[$index] = $newval;
21 function offsetUnset($index) {
22 echo __METHOD__ . "($index)\n";
[all …]
H A Darray_access_003.phpt11 function offsetExists($index) {
12 echo __METHOD__ . "($index)\n";
15 function offsetGet($index) {
16 echo __METHOD__ . "($index)\n";
17 switch($index) {
25 return $this->a[$index];
29 if ($index==3) {
32 return $this->a[$index] = $newval;
34 function offsetUnset($index) {
35 echo __METHOD__ . "($index)\n";
[all …]
H A Darray_access_004.phpt9 function offsetExists($index) {
10 echo __METHOD__ . "($index)\n";
13 function offsetGet($index) {
14 echo __METHOD__ . "($index)\n";
15 switch($index) {
23 return $this->a[$index];
27 if ($index==3) {
30 return $this->a[$index] = $newval;
32 function offsetUnset($index) {
33 echo __METHOD__ . "($index)\n";
[all …]
H A Darray_access_005.phpt13 function offsetExists($index) {
14 return array_key_exists($this->person, $index);
17 function offsetGet($index) {
18 return $this->person[$index];
21 function offsetSet($index, $value) {
22 $this->person[$index] = $value;
25 function offsetUnset($index) {
26 unset($this->person[$index]);
H A Darray_access_006.phpt13 function offsetExists($index) {
14 return array_key_exists($this->realArray, $index);
17 function offsetGet($index) {
18 return $this->realArray[$index];
21 function offsetSet($index, $value) {
22 $this->realArray[$index] = $value;
25 function offsetUnset($index) {
26 unset($this->realArray[$index]);
H A Darray_access_007.phpt13 function offsetExists($index) {
14 return array_key_exists($this->realArray, $index);
17 function offsetGet($index) {
18 return $this->realArray[$index];
21 function offsetSet($index, $value) {
22 if (is_null($index)) {
25 $this->realArray[$index] = $value;
29 function offsetUnset($index) {
30 unset($this->realArray[$index]);
/PHP-5.5/scripts/dev/generate-phpt/src/setup/
H A DgtCommandLineOptions.php33 public function isValidOptionArg($array, $index) { argument
34 if (!isset($array[$index]))
38 return substr($array[$index], 0, 1) != '-';
/PHP-5.5/scripts/dev/
H A Dgenerate-phpt.phar446 public function isValidOptionArg($array, $index) {
447 if (!isset($array[$index]))
451 return substr($array[$index], 0, 1) != '-';
/PHP-5.5/sapi/phttpd/
H A Dphttpd.c200 int index; in php_phttpd_request_ctor()
214 index = Ns_SetIFind(NSG(conn)->headers, "content-type"); in php_phttpd_request_ctor()
215 SG(request_info).content_type = index == -1 ? NULL : in php_phttpd_request_ctor()
216 Ns_SetValue(NSG(conn)->headers, index); in php_phttpd_request_ctor()
/PHP-5.5/sapi/roxen/
H A DTODO23 …run("/home/www/biall.com.pl/index.php3",mapping[2],modules/scripting/php5.pike.PHPScript(),modules…

Completed in 80 milliseconds

12345678910>>...26