/PHP-5.5/ext/standard/ |
H A D | basic_functions.h | 247 char *key; member
|
/PHP-5.5/ext/pdo_pgsql/tests/ |
H A D | large_objects.phpt | 17 $db->exec('CREATE TABLE test (blobid integer not null primary key, bloboid OID)');
|
/PHP-5.5/ext/dba/ |
H A D | dba_db3.c | 49 gkey.data = (char *) key; gkey.size = keylen
|
/PHP-5.5/ext/standard/tests/file/ |
H A D | rename_variation10.phpt | 114 foreach($inputs as $key =>$value) { 115 echo "\n--$key--\n";
|
H A D | unlink_variation7.phpt | 111 foreach($inputs as $key =>$value) { 112 echo "\n--$key--\n";
|
H A D | fopen_variation4.phpt | 113 foreach($inputs as $key =>$value) { 114 echo "\n--$key--\n";
|
/PHP-5.5/ext/standard/tests/array/ |
H A D | array_multisort_variation1.phpt | 98 foreach($inputs as $key =>$value) { 99 echo "\n--$key--\n";
|
H A D | array_multisort_variation2.phpt | 106 foreach($inputs as $key =>$value) { 107 echo "\n--$key--\n";
|
H A D | array_multisort_variation3.phpt | 99 foreach($inputs as $key =>$value) { 100 echo "\n--$key--\n";
|
H A D | uksort_variation2.phpt | 90 foreach($inputs as $key =>$value) { 91 echo "\n--$key--\n";
|
H A D | array_reverse_variation3.phpt | 50 array( "one" => "ten", "two" => "twenty", "three" => "thirty"), // string key/value 53 // associative array, containing null/empty/boolean values as key/value
|
/PHP-5.5/ext/spl/internal/ |
H A D | spldoublylinkedlist.inc | 161 /** @return current key 163 public function key()
|
/PHP-5.5/ext/standard/tests/general_functions/ |
H A D | call_user_func_array_variation_002.phpt | 99 foreach($inputs as $key =>$value) { 100 echo "\n--$key--\n";
|
/PHP-5.5/ext/date/tests/ |
H A D | localtime_variation2.phpt | 98 foreach($inputs as $key =>$value) { 99 echo "\n--$key--\n";
|
/PHP-5.5/Zend/ |
H A D | zend_execute.h | 65 ZEND_API int zend_lookup_class_ex(const char *name, int name_length, const zend_literal *key, int u… 352 …s_by_name(const char *class_name, uint class_name_len, const zend_literal *key, int fetch_type TSR…
|
H A D | zend_exceptions.c | 380 #define TRACE_APPEND_KEY(key) \ argument 381 if (zend_hash_find(ht, key, sizeof(key), (void**)&tmp) == SUCCESS) { \ 383 zend_error(E_WARNING, "Value for %s is no string", key); \
|
H A D | zend_hash.c | 1174 ZEND_API void zend_hash_get_current_key_zval_ex(const HashTable *ht, zval *key, HashPosition *pos) { in zend_hash_get_current_key_zval_ex() argument 1182 Z_TYPE_P(key) = IS_NULL; in zend_hash_get_current_key_zval_ex() 1184 Z_TYPE_P(key) = IS_STRING; in zend_hash_get_current_key_zval_ex() 1185 Z_STRVAL_P(key) = estrndup(p->arKey, p->nKeyLength - 1); in zend_hash_get_current_key_zval_ex() 1186 Z_STRLEN_P(key) = p->nKeyLength - 1; in zend_hash_get_current_key_zval_ex() 1188 Z_TYPE_P(key) = IS_LONG; in zend_hash_get_current_key_zval_ex() 1189 Z_LVAL_P(key) = p->h; in zend_hash_get_current_key_zval_ex()
|
H A D | zend_vm_def.h | 4248 zval *key = NULL; variable 4281 if (key) { 4283 ZVAL_LONG(key, int_key); 4305 if (key) { 4341 if (key) { 5254 if (generator->key) { 5343 || (PZVAL_IS_REF(key) && Z_REFCOUNT_P(key) > 0) 5348 INIT_PZVAL_COPY(copy, key); 5355 generator->key = copy; 5357 Z_ADDREF_P(key); [all …]
|
/PHP-5.5/ext/gd/tests/ |
H A D | imagecolorallocate_variation1.phpt | 109 foreach($values as $key => $value) { 110 echo "\n-- $key --\n";
|
/PHP-5.5/ext/opcache/ |
H A D | zend_accelerator_module.c | 311 char *key; in filename_is_in_cache() local 328 if ((key = accel_make_persistent_key_ex(&handle, filename_len, &key_length TSRMLS_CC)) != NULL) { in filename_is_in_cache() 329 persistent_script = zend_accel_hash_find(&ZCSG(hash), key, key_length + 1); in filename_is_in_cache() 538 …zend_hash_update(return_value->value.ht, cache_entry->key, cache_entry->key_length, &persistent_sc… in accelerator_get_scripts()
|
H A D | zend_persist.c | 668 zend_persistent_script *zend_accel_script_persist(zend_persistent_script *script, char **key, unsig… argument 674 *key = zend_accel_memdup(*key, key_length + 1);
|
/PHP-5.5/ext/dom/ |
H A D | php_dom.c | 306 …property_ptr_ptr(zval *object, zval *member, int type, const zend_literal *key TSRMLS_DC) /* {{{ */ in dom_get_property_ptr_ptr() 329 retval = std_hnd->get_property_ptr_ptr(object, member, type, key TSRMLS_CC); in dom_get_property_ptr_ptr() 340 zval *dom_read_property(zval *object, zval *member, int type, const zend_literal *key TSRMLS_DC) in dom_read_property() 375 retval = std_hnd->read_property(object, member, type, key TSRMLS_CC); in dom_read_property() 386 void dom_write_property(zval *object, zval *member, zval *value, const zend_literal *key TSRMLS_DC) in dom_write_property() 411 std_hnd->write_property(object, member, value, key TSRMLS_CC); in dom_write_property() 421 static int dom_property_exists(zval *object, zval *member, int check_empty, const zend_literal *key… in dom_property_exists() 459 retval = std_hnd->has_property(object, member, check_empty, key TSRMLS_CC); in dom_property_exists()
|
/PHP-5.5/ext/spl/ |
H A D | spl_heap.c | 953 static void spl_heap_it_get_current_key(zend_object_iterator *iter, zval *key TSRMLS_DC) /* {{{ */ in spl_heap_it_get_current_key() 957 ZVAL_LONG(key, iterator->object->heap->count - 1); in spl_heap_it_get_current_key() 984 SPL_METHOD(SplHeap, key) in SPL_METHOD() argument 1190 SPL_ME(SplHeap, key, arginfo_splheap_void, ZEND_ACC_PUBLIC) 1205 SPL_ME(SplHeap, key, arginfo_splheap_void, ZEND_ACC_PUBLIC)
|
/PHP-5.5/ext/soap/ |
H A D | php_encoding.c | 2351 zval key; in to_xml_array() local 2358 zval_dtor(&key); in to_xml_array() 2794 xmlNodePtr key; in to_xml_map() local 2803 xmlAddChild(item,key); in to_xml_map() 2806 set_xsi_type(key, "xsd:string"); in to_xml_map() 2815 set_xsi_type(key, "xsd:int"); in to_xml_map() 2837 zval *ret, *key, *value; in to_zval_map() local 2862 if (Z_TYPE_P(key) == IS_STRING) { in to_zval_map() 2863 …zend_symtable_update(Z_ARRVAL_P(ret), Z_STRVAL_P(key), Z_STRLEN_P(key) + 1, &value, sizeof(zval *)… in to_zval_map() 2864 } else if (Z_TYPE_P(key) == IS_LONG) { in to_zval_map() [all …]
|
/PHP-5.5/ext/phar/tests/zip/ |
H A D | phar_setsignaturealgo2.phpt | 60 file_put_contents($fname6 . '.pubkey', $pubkey['key']);
|